Commit c85fc989 authored by Arnd Bergmann's avatar Arnd Bergmann

ARM: at91: export sam9_smc interfaces

The pata_at91 driver uses interfaces defined in the sam9_smc
platform code. Since the pata driver can be a loadable module,
we have to export those symbols in order to link cleanly.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
Cc: Andrew Victor <linux@maxim.org.za>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
parent dfe36763
...@@ -36,6 +36,7 @@ void sam9_smc_write_mode(int id, int cs, ...@@ -36,6 +36,7 @@ void sam9_smc_write_mode(int id, int cs,
{ {
sam9_smc_cs_write_mode(AT91_SMC_CS(id, cs), config); sam9_smc_cs_write_mode(AT91_SMC_CS(id, cs), config);
} }
EXPORT_SYMBOL_GPL(sam9_smc_write_mode);
static void sam9_smc_cs_configure(void __iomem *base, static void sam9_smc_cs_configure(void __iomem *base,
struct sam9_smc_config *config) struct sam9_smc_config *config)
...@@ -69,6 +70,7 @@ void sam9_smc_configure(int id, int cs, ...@@ -69,6 +70,7 @@ void sam9_smc_configure(int id, int cs,
{ {
sam9_smc_cs_configure(AT91_SMC_CS(id, cs), config); sam9_smc_cs_configure(AT91_SMC_CS(id, cs), config);
} }
EXPORT_SYMBOL_GPL(sam9_smc_configure);
static void sam9_smc_cs_read_mode(void __iomem *base, static void sam9_smc_cs_read_mode(void __iomem *base,
struct sam9_smc_config *config) struct sam9_smc_config *config)
...@@ -84,6 +86,7 @@ void sam9_smc_read_mode(int id, int cs, ...@@ -84,6 +86,7 @@ void sam9_smc_read_mode(int id, int cs,
{ {
sam9_smc_cs_read_mode(AT91_SMC_CS(id, cs), config); sam9_smc_cs_read_mode(AT91_SMC_CS(id, cs), config);
} }
EXPORT_SYMBOL_GPL(sam9_smc_read_mode);
static void sam9_smc_cs_read(void __iomem *base, static void sam9_smc_cs_read(void __iomem *base,
struct sam9_smc_config *config) struct sam9_smc_config *config)
......
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