platform.c (cb54b53adae70701bdd77d848cea4b9b39b61cf9) | platform.c (be480dcbb598687584e01156479d5476ca51ca9b) |
---|---|
1/* 2 * Platform driver for the Synopsys DesignWare DMA Controller 3 * 4 * Copyright (C) 2007-2008 Atmel Corporation 5 * Copyright (C) 2010-2011 ST Microelectronics 6 * Copyright (C) 2013 Intel Corporation 7 * 8 * Some parts of this driver are derived from the original dw_dmac. --- 239 unchanged lines hidden (view full) --- 248MODULE_DEVICE_TABLE(of, dw_dma_of_id_table); 249#endif 250 251#ifdef CONFIG_ACPI 252static const struct acpi_device_id dw_dma_acpi_id_table[] = { 253 { "INTL9C60", 0 }, 254 { } 255}; | 1/* 2 * Platform driver for the Synopsys DesignWare DMA Controller 3 * 4 * Copyright (C) 2007-2008 Atmel Corporation 5 * Copyright (C) 2010-2011 ST Microelectronics 6 * Copyright (C) 2013 Intel Corporation 7 * 8 * Some parts of this driver are derived from the original dw_dmac. --- 239 unchanged lines hidden (view full) --- 248MODULE_DEVICE_TABLE(of, dw_dma_of_id_table); 249#endif 250 251#ifdef CONFIG_ACPI 252static const struct acpi_device_id dw_dma_acpi_id_table[] = { 253 { "INTL9C60", 0 }, 254 { } 255}; |
256MODULE_DEVICE_TABLE(acpi, dw_dma_acpi_id_table); |
|
256#endif 257 258#ifdef CONFIG_PM_SLEEP 259 260static int dw_suspend_noirq(struct device *dev) 261{ 262 struct platform_device *pdev = to_platform_device(dev); 263 struct dw_dma_chip *chip = platform_get_drvdata(pdev); --- 54 unchanged lines hidden --- | 257#endif 258 259#ifdef CONFIG_PM_SLEEP 260 261static int dw_suspend_noirq(struct device *dev) 262{ 263 struct platform_device *pdev = to_platform_device(dev); 264 struct dw_dma_chip *chip = platform_get_drvdata(pdev); --- 54 unchanged lines hidden --- |