firmware: use static inline for to_fw_priv()

This lets us type check the callers.

Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Luis R. Rodriguez 2017-11-20 10:23:55 -08:00 committed by Greg Kroah-Hartman
parent 33a5b18de2
commit 942e743b73

View file

@ -125,7 +125,10 @@ struct fw_name_devm {
const char *name;
};
#define to_fw_priv(d) container_of(d, struct fw_priv, ref)
static inline struct fw_priv *to_fw_priv(struct kref *ref)
{
return container_of(ref, struct fw_priv, ref);
}
#define FW_LOADER_NO_CACHE 0
#define FW_LOADER_START_CACHE 1