Commit 996ad568 authored by Nicolas Pitre's avatar Nicolas Pitre Committed by Linus Torvalds

mmc: make SDIO device/driver struct accessors public

Especially with the PM framework, those are quite handy to have in driver
code too.
Signed-off-by: default avatarNicolas Pitre <nico@marvell.com>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 95cdfb72
...@@ -20,9 +20,6 @@ ...@@ -20,9 +20,6 @@
#include "sdio_cis.h" #include "sdio_cis.h"
#include "sdio_bus.h" #include "sdio_bus.h"
#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
#define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
/* show configuration fields */ /* show configuration fields */
#define sdio_config_attr(field, format_string) \ #define sdio_config_attr(field, format_string) \
static ssize_t \ static ssize_t \
......
...@@ -67,6 +67,7 @@ struct sdio_func { ...@@ -67,6 +67,7 @@ struct sdio_func {
#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev) #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d) #define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
/* /*
* SDIO function device driver * SDIO function device driver
...@@ -81,6 +82,8 @@ struct sdio_driver { ...@@ -81,6 +82,8 @@ struct sdio_driver {
struct device_driver drv; struct device_driver drv;
}; };
#define to_sdio_driver(d) container_of(d, struct sdio_driver, drv)
/** /**
* SDIO_DEVICE - macro used to describe a specific SDIO device * SDIO_DEVICE - macro used to describe a specific SDIO device
* @vend: the 16 bit manufacturer code * @vend: the 16 bit manufacturer code
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment