diff options
author | Alexander Popov <a13xp0p0v88@gmail.com> | 2014-04-23 17:53:24 +0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-05-02 21:06:21 +0400 |
commit | 62057d3375a5237c24f1dee82cb6c860081cc4ff (patch) | |
tree | 7530cf69fd4a5af5f0cae09be95f1ecbf4703d88 /drivers/dma | |
parent | 78a4f0367a1de89c625237fc5524f4ef4535f031 (diff) | |
download | linux-62057d3375a5237c24f1dee82cb6c860081cc4ff.tar.xz |
dma: mpc512x: separate 'compatible' values for MPC512x and MPC8308
MPC512x and MPC8308 have similar DMA controllers, but are independent SoCs.
DMA controller driver should have separate 'compatible' values for these SoCs.
Signed-off-by: Alexander Popov <a13xp0p0v88@gmail.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/mpc512x_dma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/mpc512x_dma.c b/drivers/dma/mpc512x_dma.c index 2ce248b552dc..0b17f4db1908 100644 --- a/drivers/dma/mpc512x_dma.c +++ b/drivers/dma/mpc512x_dma.c @@ -815,6 +815,7 @@ static int mpc_dma_remove(struct platform_device *op) static struct of_device_id mpc_dma_match[] = { { .compatible = "fsl,mpc5121-dma", }, + { .compatible = "fsl,mpc8308-dma", }, {}, }; |