...so we'll able to write bindings for the OpenFirmware without messing with #ifdefs in the driver itself.
Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> --- drivers/mmc/host/mmc_spi.c | 6 ++++-- drivers/mmc/host/mmc_spi.h | 7 +++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 drivers/mmc/host/mmc_spi.h diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index 85d9853..f2c4fc2 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c @@ -1184,7 +1184,7 @@ static int maybe_count_child(struct device *dev, void *c) return 0; } -static int mmc_spi_probe(struct spi_device *spi) +int mmc_spi_probe(struct spi_device *spi) { void *ones; struct mmc_host *mmc; @@ -1366,9 +1366,10 @@ nomem: kfree(ones); return status; } +EXPORT_SYMBOL(mmc_spi_probe); -static int __devexit mmc_spi_remove(struct spi_device *spi) +int __devexit mmc_spi_remove(struct spi_device *spi) { struct mmc_host *mmc = dev_get_drvdata(&spi->dev); struct mmc_spi_host *host; @@ -1398,6 +1399,7 @@ static int __devexit mmc_spi_remove(struct spi_device *spi) } return 0; } +EXPORT_SYMBOL(mmc_spi_remove); static struct spi_driver mmc_spi_driver = { diff --git a/drivers/mmc/host/mmc_spi.h b/drivers/mmc/host/mmc_spi.h new file mode 100644 index 0000000..d4fcd91 --- /dev/null +++ b/drivers/mmc/host/mmc_spi.h @@ -0,0 +1,7 @@ +#ifndef __DRIVERS_MMC_HOST_MMC_SPI_H +#define __DRIVERS_MMC_HOST_MMC_SPI_H + +extern int mmc_spi_probe(struct spi_device *spi); +extern int __devexit mmc_spi_remove(struct spi_device *spi); + +#endif -- 1.5.5.1 _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev