diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2017-01-13 14:14:08 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2017-02-13 13:20:21 +0100 |
commit | 55244c5659b5e73a969b285a2e763223d8aab979 (patch) | |
tree | a8b1377b527dd16e4b3c70c7b5fde232049c433f /drivers/mmc/core/sdio_io.c | |
parent | 066185d690631478b16045d152b163a51a5e4847 (diff) | |
download | lwn-55244c5659b5e73a969b285a2e763223d8aab979.tar.gz lwn-55244c5659b5e73a969b285a2e763223d8aab979.zip |
mmc: core: Move public functions from core.h to private headers
A significant amount of functions are available through the public mmc
core.h header file. Let's slim down this public mmc interface, as to
prevent users from abusing it, by moving some of the functions to private
mmc header files.
This change concentrates on moving the functions into private mmc headers,
following changes may continue with additional clean-ups, as an example
some functions can be turned into static.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Shawn Lin <shawn.lin@rock-chips.com>
Diffstat (limited to 'drivers/mmc/core/sdio_io.c')
-rw-r--r-- | drivers/mmc/core/sdio_io.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/core/sdio_io.c b/drivers/mmc/core/sdio_io.c index 406e5f037e32..76fe6d599b77 100644 --- a/drivers/mmc/core/sdio_io.c +++ b/drivers/mmc/core/sdio_io.c @@ -16,6 +16,7 @@ #include <linux/mmc/sdio_func.h> #include "sdio_ops.h" +#include "core.h" /** * sdio_claim_host - exclusively claim a bus for a certain SDIO function |