diff options
-rw-r--r-- | drivers/dma/dw_dmac.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c index 35c8dd5f1013..6694676c9b82 100644 --- a/drivers/dma/dw_dmac.c +++ b/drivers/dma/dw_dmac.c | |||
@@ -1899,6 +1899,11 @@ static const struct of_device_id dw_dma_id_table[] = { | |||
1899 | MODULE_DEVICE_TABLE(of, dw_dma_id_table); | 1899 | MODULE_DEVICE_TABLE(of, dw_dma_id_table); |
1900 | #endif | 1900 | #endif |
1901 | 1901 | ||
1902 | static const struct platform_device_id dw_dma_ids[] = { | ||
1903 | { "INTL9C60", 0 }, | ||
1904 | { } | ||
1905 | }; | ||
1906 | |||
1902 | static struct platform_driver dw_driver = { | 1907 | static struct platform_driver dw_driver = { |
1903 | .probe = dw_probe, | 1908 | .probe = dw_probe, |
1904 | .remove = dw_remove, | 1909 | .remove = dw_remove, |
@@ -1908,6 +1913,7 @@ static struct platform_driver dw_driver = { | |||
1908 | .pm = &dw_dev_pm_ops, | 1913 | .pm = &dw_dev_pm_ops, |
1909 | .of_match_table = of_match_ptr(dw_dma_id_table), | 1914 | .of_match_table = of_match_ptr(dw_dma_id_table), |
1910 | }, | 1915 | }, |
1916 | .id_table = dw_dma_ids, | ||
1911 | }; | 1917 | }; |
1912 | 1918 | ||
1913 | static int __init dw_init(void) | 1919 | static int __init dw_init(void) |