fix build (once again)

This commit is contained in:
anna 2021-08-01 23:29:04 +02:00
parent 7ef26f26e9
commit 5a220eee5d
Signed by: fef
GPG key ID: EC22E476DC2D3D84

View file

@ -35,13 +35,13 @@ int devices_init(void);
int device_init(struct device *dev);
/** Increment a device's reference counter. */
inline void device_get(struct device *dev)
__always_inline void device_get(struct device *dev)
{
kent_get(&dev->kent);
}
/** Decrement a device's referece counter. */
inline void device_put(struct device *dev)
__always_inline void device_put(struct device *dev)
{
kent_put(&dev->kent);
}