Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fea20dbc authored by Michal Nazarewicz's avatar Michal Nazarewicz Committed by Felipe Balbi
Browse files

usb: gadget: storage_common: Make fsg_lun_is_open() a function.



Since function-line macros are to be avoided, this commit replaces
the fsg_lun_is_open() macro with a static inline function.

While at it, this commit also adds “inline” modifier to the
fsg_lun_from_dev() function.

Signed-off-by: default avatarMichal Nazarewicz <mina86@mina86.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 8575f7a7
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -155,9 +155,12 @@ struct fsg_lun {
	struct device	dev;
};

#define fsg_lun_is_open(curlun)	((curlun)->filp != NULL)
static inline bool fsg_lun_is_open(struct fsg_lun *curlun)
{
	return curlun->filp != NULL;
}

static struct fsg_lun *fsg_lun_from_dev(struct device *dev)
static inline struct fsg_lun *fsg_lun_from_dev(struct device *dev)
{
	return container_of(dev, struct fsg_lun, dev);
}