Skip to content

Commit

Permalink
mtd: remove use of __devinitdata
Browse files Browse the repository at this point in the history
CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
  • Loading branch information
Bill Pemberton authored and Artem Bityutskiy committed Nov 22, 2012
1 parent 06f2551 commit 042a190
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/mtd/devices/mtd_dataflash.c
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ struct flash_info {
#define IS_POW2PS 0x0001 /* uses 2^N byte pages */
};

static struct flash_info __devinitdata dataflash_data [] = {
static struct flash_info dataflash_data [] = {

/*
* NOTE: chips with SUP_POW2PS (rev D and up) need two entries,
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/devices/sst25l.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct flash_info {

#define to_sst25l_flash(x) container_of(x, struct sst25l_flash, mtd)

static struct flash_info __devinitdata sst25l_flash_info[] = {
static struct flash_info sst25l_flash_info[] = {
{"sst25lf020a", 0xbf43, 256, 1024, 4096},
{"sst25lf040a", 0xbf44, 256, 2048, 4096},
};
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/maps/esb2rom.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ static void __devexit esb2rom_remove_one (struct pci_dev *pdev)
esb2rom_cleanup(window);
}

static struct pci_device_id esb2rom_pci_tbl[] __devinitdata = {
static struct pci_device_id esb2rom_pci_tbl[] = {
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0,
PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_0,
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/maps/ichxrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static void __devexit ichxrom_remove_one (struct pci_dev *pdev)
ichxrom_cleanup(window);
}

static struct pci_device_id ichxrom_pci_tbl[] __devinitdata = {
static struct pci_device_id ichxrom_pci_tbl[] = {
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0,
PCI_ANY_ID, PCI_ANY_ID, },
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_0,
Expand Down
2 changes: 1 addition & 1 deletion drivers/mtd/nand/mpc5121_nfc.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ static int __devexit mpc5121_nfc_remove(struct platform_device *op)
return 0;
}

static struct of_device_id mpc5121_nfc_match[] __devinitdata = {
static struct of_device_id mpc5121_nfc_match[] = {
{ .compatible = "fsl,mpc5121-nfc", },
{},
};
Expand Down

0 comments on commit 042a190

Please sign in to comment.