Commit 45a6b32e authored by Chris Ball's avatar Chris Ball

mmc: core: Export regulator_* functions as GPL

The regulator API functions we're wrapping are exported as GPL, so our
wrappers for the same functions should be too.
Reported-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent ecf8b5d0
...@@ -950,7 +950,7 @@ int mmc_regulator_get_ocrmask(struct regulator *supply) ...@@ -950,7 +950,7 @@ int mmc_regulator_get_ocrmask(struct regulator *supply)
return result; return result;
} }
EXPORT_SYMBOL(mmc_regulator_get_ocrmask); EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
/** /**
* mmc_regulator_set_ocr - set regulator to match host->ios voltage * mmc_regulator_set_ocr - set regulator to match host->ios voltage
...@@ -1020,7 +1020,7 @@ int mmc_regulator_set_ocr(struct mmc_host *mmc, ...@@ -1020,7 +1020,7 @@ int mmc_regulator_set_ocr(struct mmc_host *mmc,
"could not set regulator OCR (%d)\n", result); "could not set regulator OCR (%d)\n", result);
return result; return result;
} }
EXPORT_SYMBOL(mmc_regulator_set_ocr); EXPORT_SYMBOL_GPL(mmc_regulator_set_ocr);
#endif /* CONFIG_REGULATOR */ #endif /* CONFIG_REGULATOR */
......
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