hwmon: (i5k_amb) Fix compile warning
This patch fixes the following compile warning. drivers/hwmon/i5k_amb.c:500: warning: 'i5k_amb_ids' defined but not used The warning is seen if the driver is built into the kernel (not as module). Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com> Acked-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
@@ -497,12 +497,14 @@ static unsigned long chipset_ids[] = {
|
|||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifdef MODULE
|
||||||
static struct pci_device_id i5k_amb_ids[] __devinitdata = {
|
static struct pci_device_id i5k_amb_ids[] __devinitdata = {
|
||||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) },
|
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) },
|
||||||
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5400_ERR) },
|
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5400_ERR) },
|
||||||
{ 0, }
|
{ 0, }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(pci, i5k_amb_ids);
|
MODULE_DEVICE_TABLE(pci, i5k_amb_ids);
|
||||||
|
#endif
|
||||||
|
|
||||||
static int __devinit i5k_amb_probe(struct platform_device *pdev)
|
static int __devinit i5k_amb_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user