diff options
author | Michele Curti <michele.curti@gmail.com> | 2014-12-02 12:07:56 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-12-05 12:58:30 -0500 |
commit | 345e3123d112600b55f1d43124f2e977ee83d0cc (patch) | |
tree | 388f3d9a2ac83f04d5d24cb04f14a178ea770121 | |
parent | 39375334a1c18f63faefeebea74363a705b87f0a (diff) |
drivers/dma/pch_dma: declare pch_dma_id_table as static
pch_dma_id_table is used in pch_dma.c only, so declare
it as static
Signed-off-by: Michele Curti <michele.curti@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
-rw-r--r-- | drivers/dma/pch_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c index 9f9ca9fe5ce6..6e0e47d76b23 100644 --- a/drivers/dma/pch_dma.c +++ b/drivers/dma/pch_dma.c | |||
@@ -997,7 +997,7 @@ static void pch_dma_remove(struct pci_dev *pdev) | |||
997 | #define PCI_DEVICE_ID_ML7831_DMA1_8CH 0x8810 | 997 | #define PCI_DEVICE_ID_ML7831_DMA1_8CH 0x8810 |
998 | #define PCI_DEVICE_ID_ML7831_DMA2_4CH 0x8815 | 998 | #define PCI_DEVICE_ID_ML7831_DMA2_4CH 0x8815 |
999 | 999 | ||
1000 | const struct pci_device_id pch_dma_id_table[] = { | 1000 | static const struct pci_device_id pch_dma_id_table[] = { |
1001 | { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_8CH), 8 }, | 1001 | { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_8CH), 8 }, |
1002 | { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_4CH), 4 }, | 1002 | { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_4CH), 4 }, |
1003 | { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA1_8CH), 8}, /* UART Video */ | 1003 | { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_DMA1_8CH), 8}, /* UART Video */ |