summaryrefslogtreecommitdiffstats
path: root/arch/mips/bcm63xx/dev-dsp.c
diff options
context:
space:
mode:
authorFlorian Fainelli2012-07-24 16:33:09 +0200
committerRalf Baechle2012-07-24 16:33:09 +0200
commit94c58b7f237d33e6afcc8998e98364a7b9e4e289 (patch)
tree9f838a0e555b3f25bbd0c7750f2821659a3a57ad /arch/mips/bcm63xx/dev-dsp.c
parentMIPS: BCM63xx: Make board setup code register the spi platform device (diff)
downloadkernel-qcow2-linux-94c58b7f237d33e6afcc8998e98364a7b9e4e289.tar.gz
kernel-qcow2-linux-94c58b7f237d33e6afcc8998e98364a7b9e4e289.tar.xz
kernel-qcow2-linux-94c58b7f237d33e6afcc8998e98364a7b9e4e289.zip
MIPS: BCM63XX: Fix platform_devices id
There is only one watchdog and VoIP DSP platform devices per board, use -1 as the platform_device id accordingly. Signed-off-by: Florian Fainelli <florian@openwrt.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/3313/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm63xx/dev-dsp.c')
-rw-r--r--arch/mips/bcm63xx/dev-dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/dev-dsp.c b/arch/mips/bcm63xx/dev-dsp.c
index da46d1d3c77c..5bb5b154c9bd 100644
--- a/arch/mips/bcm63xx/dev-dsp.c
+++ b/arch/mips/bcm63xx/dev-dsp.c
@@ -31,7 +31,7 @@ static struct resource voip_dsp_resources[] = {
static struct platform_device bcm63xx_voip_dsp_device = {
.name = "bcm63xx-voip-dsp",
- .id = 0,
+ .id = -1,
.num_resources = ARRAY_SIZE(voip_dsp_resources),
.resource = voip_dsp_resources,
};