mirror of https://gitee.com/openkylin/linux.git
i2c: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro is not preferred. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
069a9502dd
commit
392debf116
|
@ -494,7 +494,7 @@ static struct i2c_adapter ali1535_adapter = {
|
|||
.algo = &smbus_algorithm,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(ali1535_ids) = {
|
||||
static const struct pci_device_id ali1535_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M7101) },
|
||||
{ },
|
||||
};
|
||||
|
|
|
@ -416,7 +416,7 @@ static void ali1563_remove(struct pci_dev *dev)
|
|||
ali1563_shutdown(dev);
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(ali1563_id_table) = {
|
||||
static const struct pci_device_id ali1563_id_table[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M1563) },
|
||||
{},
|
||||
};
|
||||
|
|
|
@ -476,7 +476,7 @@ static struct i2c_adapter ali15x3_adapter = {
|
|||
.algo = &smbus_algorithm,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(ali15x3_ids) = {
|
||||
static const struct pci_device_id ali15x3_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M7101) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -307,7 +307,7 @@ static const char* chipname[] = {
|
|||
"nVidia nForce", "AMD8111",
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(amd756_ids) = {
|
||||
static const struct pci_device_id amd756_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VIPER_740B),
|
||||
.driver_data = AMD756 },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_VIPER_7413),
|
||||
|
|
|
@ -414,7 +414,7 @@ static const struct i2c_algorithm smbus_algorithm = {
|
|||
};
|
||||
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(amd8111_ids) = {
|
||||
static const struct pci_device_id amd8111_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8111_SMBUS2) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -308,7 +308,7 @@ static void i2c_dw_pci_remove(struct pci_dev *pdev)
|
|||
/* work with hotplug and coldplug */
|
||||
MODULE_ALIAS("i2c_designware-pci");
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(i2_designware_pci_ids) = {
|
||||
static const struct pci_device_id i2_designware_pci_ids[] = {
|
||||
/* Moorestown */
|
||||
{ PCI_VDEVICE(INTEL, 0x0802), moorestown_0 },
|
||||
{ PCI_VDEVICE(INTEL, 0x0803), moorestown_1 },
|
||||
|
|
|
@ -186,7 +186,7 @@ static DEFINE_MUTEX(pch_mutex);
|
|||
#define PCI_DEVICE_ID_ML7223_I2C 0x8010
|
||||
#define PCI_DEVICE_ID_ML7831_I2C 0x8817
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(pch_pcidev_id) = {
|
||||
static const struct pci_device_id pch_pcidev_id[] = {
|
||||
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_PCH_I2C), 1, },
|
||||
{ PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_I2C), 2, },
|
||||
{ PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_I2C), 1, },
|
||||
|
|
|
@ -104,7 +104,7 @@ static struct i2c_adapter hydra_adap = {
|
|||
.algo_data = &hydra_bit_data,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(hydra_ids) = {
|
||||
static const struct pci_device_id hydra_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_HYDRA) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -791,7 +791,7 @@ static const struct i2c_algorithm smbus_algorithm = {
|
|||
.functionality = i801_func,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
|
||||
static const struct pci_device_id i801_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AA_3) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801AB_3) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_2) },
|
||||
|
|
|
@ -182,7 +182,7 @@ struct ismt_priv {
|
|||
/**
|
||||
* ismt_ids - PCI device IDs supported by this driver
|
||||
*/
|
||||
static DEFINE_PCI_DEVICE_TABLE(ismt_ids) = {
|
||||
static const struct pci_device_id ismt_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT0) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT1) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMT) },
|
||||
|
|
|
@ -306,7 +306,7 @@ static struct i2c_algorithm smbus_algorithm = {
|
|||
};
|
||||
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(nforce2_ids) = {
|
||||
static const struct pci_device_id nforce2_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2_SMBUS) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SMBUS) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3_SMBUS) },
|
||||
|
|
|
@ -401,7 +401,7 @@ static void pasemi_smb_remove(struct pci_dev *dev)
|
|||
kfree(smbus);
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(pasemi_smb_ids) = {
|
||||
static const struct pci_device_id pasemi_smb_ids[] = {
|
||||
{ PCI_DEVICE(0x1959, 0xa003) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -540,7 +540,7 @@ static const struct i2c_algorithm smbus_algorithm = {
|
|||
.functionality = piix4_func,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(piix4_ids) = {
|
||||
static const struct pci_device_id piix4_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443MX_3) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_EFAR, PCI_DEVICE_ID_EFAR_SLC90E66_3) },
|
||||
|
|
|
@ -148,7 +148,7 @@ static void ce4100_i2c_remove(struct pci_dev *dev)
|
|||
kfree(sds);
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(ce4100_i2c_devices) = {
|
||||
static const struct pci_device_id ce4100_i2c_devices[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2e68)},
|
||||
{ },
|
||||
};
|
||||
|
|
|
@ -369,7 +369,7 @@ static struct i2c_adapter sis5595_adapter = {
|
|||
.algo = &smbus_algorithm,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(sis5595_ids) = {
|
||||
static const struct pci_device_id sis5595_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -510,7 +510,7 @@ static struct i2c_adapter sis630_adapter = {
|
|||
.retries = 3
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(sis630_ids) = {
|
||||
static const struct pci_device_id sis630_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_LPC) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_964) },
|
||||
|
|
|
@ -244,7 +244,7 @@ static struct i2c_adapter sis96x_adapter = {
|
|||
.algo = &smbus_algorithm,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(sis96x_ids) = {
|
||||
static const struct pci_device_id sis96x_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_SMBUS) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -88,7 +88,7 @@ static struct i2c_adapter vt586b_adapter = {
|
|||
};
|
||||
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(vt586b_ids) = {
|
||||
static const struct pci_device_id vt586b_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_3) },
|
||||
{ 0, }
|
||||
};
|
||||
|
|
|
@ -442,7 +442,7 @@ static int vt596_probe(struct pci_dev *pdev,
|
|||
return error;
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(vt596_ids) = {
|
||||
static const struct pci_device_id vt596_ids[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596_3),
|
||||
.driver_data = SMBBA1 },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C596B_3),
|
||||
|
|
|
@ -556,7 +556,7 @@ static struct platform_driver scx200_pci_driver = {
|
|||
.remove = scx200_remove,
|
||||
};
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(scx200_isa) = {
|
||||
static const struct pci_device_id scx200_isa[] = {
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SCx200_BRIDGE) },
|
||||
{ PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SC1100_BRIDGE) },
|
||||
{ 0, }
|
||||
|
|
Loading…
Reference in New Issue