mmc_spi.c (851462444d421c223965b12b836bef63da61b57f) mmc_spi.c (0433c14356702e296f474f77ebd42f0a9d9a5487)
1/*
2 * mmc_spi.c - Access SD/MMC cards through SPI master controllers
3 *
4 * (C) Copyright 2005, Intec Automation,
5 * Mike Lavender (mike@steroidmicros)
6 * (C) Copyright 2006-2007, David Brownell
7 * (C) Copyright 2007, Axis Communications,
8 * Hans-Peter Nilsson (hp@axis.com)

--- 1515 unchanged lines hidden (view full) ---

1524
1525static struct spi_driver mmc_spi_driver = {
1526 .driver = {
1527 .name = "mmc_spi",
1528 .owner = THIS_MODULE,
1529 .of_match_table = mmc_spi_of_match_table,
1530 },
1531 .probe = mmc_spi_probe,
1/*
2 * mmc_spi.c - Access SD/MMC cards through SPI master controllers
3 *
4 * (C) Copyright 2005, Intec Automation,
5 * Mike Lavender (mike@steroidmicros)
6 * (C) Copyright 2006-2007, David Brownell
7 * (C) Copyright 2007, Axis Communications,
8 * Hans-Peter Nilsson (hp@axis.com)

--- 1515 unchanged lines hidden (view full) ---

1524
1525static struct spi_driver mmc_spi_driver = {
1526 .driver = {
1527 .name = "mmc_spi",
1528 .owner = THIS_MODULE,
1529 .of_match_table = mmc_spi_of_match_table,
1530 },
1531 .probe = mmc_spi_probe,
1532 .remove = __devexit_p(mmc_spi_remove),
1532 .remove = mmc_spi_remove,
1533};
1534
1535module_spi_driver(mmc_spi_driver);
1536
1537MODULE_AUTHOR("Mike Lavender, David Brownell, "
1538 "Hans-Peter Nilsson, Jan Nikitenko");
1539MODULE_DESCRIPTION("SPI SD/MMC host driver");
1540MODULE_LICENSE("GPL");
1541MODULE_ALIAS("spi:mmc_spi");
1533};
1534
1535module_spi_driver(mmc_spi_driver);
1536
1537MODULE_AUTHOR("Mike Lavender, David Brownell, "
1538 "Hans-Peter Nilsson, Jan Nikitenko");
1539MODULE_DESCRIPTION("SPI SD/MMC host driver");
1540MODULE_LICENSE("GPL");
1541MODULE_ALIAS("spi:mmc_spi");