platform.c (762f99f4f3cb41a775b5157dd761217beba65873) | platform.c (d5a8fe0fee54d830c47959f625ffc41d080ee526) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Platform driver for the Synopsys DesignWare DMA Controller 4 * 5 * Copyright (C) 2007-2008 Atmel Corporation 6 * Copyright (C) 2010-2011 ST Microelectronics 7 * Copyright (C) 2013 Intel Corporation 8 * --- 123 unchanged lines hidden (view full) --- 132 pm_runtime_put_sync_suspend(chip->dev); 133 134 clk_disable_unprepare(chip->clk); 135} 136 137#ifdef CONFIG_OF 138static const struct of_device_id dw_dma_of_id_table[] = { 139 { .compatible = "snps,dma-spear1340", .data = &dw_dma_chip_pdata }, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Platform driver for the Synopsys DesignWare DMA Controller 4 * 5 * Copyright (C) 2007-2008 Atmel Corporation 6 * Copyright (C) 2010-2011 ST Microelectronics 7 * Copyright (C) 2013 Intel Corporation 8 * --- 123 unchanged lines hidden (view full) --- 132 pm_runtime_put_sync_suspend(chip->dev); 133 134 clk_disable_unprepare(chip->clk); 135} 136 137#ifdef CONFIG_OF 138static const struct of_device_id dw_dma_of_id_table[] = { 139 { .compatible = "snps,dma-spear1340", .data = &dw_dma_chip_pdata }, |
140 { .compatible = "renesas,rzn1-dma", .data = &dw_dma_chip_pdata }, |
|
140 {} 141}; 142MODULE_DEVICE_TABLE(of, dw_dma_of_id_table); 143#endif 144 145#ifdef CONFIG_ACPI 146static const struct acpi_device_id dw_dma_acpi_id_table[] = { 147 { "INTL9C60", (kernel_ulong_t)&dw_dma_chip_pdata }, --- 72 unchanged lines hidden --- | 141 {} 142}; 143MODULE_DEVICE_TABLE(of, dw_dma_of_id_table); 144#endif 145 146#ifdef CONFIG_ACPI 147static const struct acpi_device_id dw_dma_acpi_id_table[] = { 148 { "INTL9C60", (kernel_ulong_t)&dw_dma_chip_pdata }, --- 72 unchanged lines hidden --- |