eeprom_93xx46.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) eeprom_93xx46.c (2d6bed9ca93e98685bc5038d686984fd449cd978)
1/*
2 * Driver for 93xx46 EEPROMs
3 *
4 * (C) 2011 DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

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

384}
385
386static struct spi_driver eeprom_93xx46_driver = {
387 .driver = {
388 .name = "93xx46",
389 .owner = THIS_MODULE,
390 },
391 .probe = eeprom_93xx46_probe,
1/*
2 * Driver for 93xx46 EEPROMs
3 *
4 * (C) 2011 DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

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

384}
385
386static struct spi_driver eeprom_93xx46_driver = {
387 .driver = {
388 .name = "93xx46",
389 .owner = THIS_MODULE,
390 },
391 .probe = eeprom_93xx46_probe,
392 .remove = __devexit_p(eeprom_93xx46_remove),
392 .remove = eeprom_93xx46_remove,
393};
394
395module_spi_driver(eeprom_93xx46_driver);
396
397MODULE_LICENSE("GPL");
398MODULE_DESCRIPTION("Driver for 93xx46 EEPROMs");
399MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>");
400MODULE_ALIAS("spi:93xx46");
393};
394
395module_spi_driver(eeprom_93xx46_driver);
396
397MODULE_LICENSE("GPL");
398MODULE_DESCRIPTION("Driver for 93xx46 EEPROMs");
399MODULE_AUTHOR("Anatolij Gustschin <agust@denx.de>");
400MODULE_ALIAS("spi:93xx46");