mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
[POWERPC] fsldma: Use compatiable binding as spec
Documentation/powerpc/booting-without-of.txt specifies the compatiables we should bind to for this driver (elo, eloplus). Use these instead of the extremely specific 'mpc8540' and 'mpc8349' compatiables. Acked-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
96ce1b6dc5
commit
049c9d4553
1 changed files with 4 additions and 4 deletions
|
@ -1021,11 +1021,11 @@ const u32 mpc8349_dma_ip_feature = FSL_DMA_IP_83XX | FSL_DMA_LITTLE_ENDIAN;
|
||||||
|
|
||||||
static struct of_device_id of_fsl_dma_chan_ids[] = {
|
static struct of_device_id of_fsl_dma_chan_ids[] = {
|
||||||
{
|
{
|
||||||
.compatible = "fsl,mpc8540-dma-channel",
|
.compatible = "fsl,eloplus-dma-channel",
|
||||||
.data = (void *)&mpc8540_dma_ip_feature,
|
.data = (void *)&mpc8540_dma_ip_feature,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
.compatible = "fsl,mpc8349-dma-channel",
|
.compatible = "fsl,elo-dma-channel",
|
||||||
.data = (void *)&mpc8349_dma_ip_feature,
|
.data = (void *)&mpc8349_dma_ip_feature,
|
||||||
},
|
},
|
||||||
{}
|
{}
|
||||||
|
@ -1107,8 +1107,8 @@ err:
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct of_device_id of_fsl_dma_ids[] = {
|
static struct of_device_id of_fsl_dma_ids[] = {
|
||||||
{ .compatible = "fsl,mpc8540-dma", },
|
{ .compatible = "fsl,eloplus-dma", },
|
||||||
{ .compatible = "fsl,mpc8349-dma", },
|
{ .compatible = "fsl,elo-dma", },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue