]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
usb: musb: omap2430: make it compile again
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Tue, 25 Jun 2013 07:41:02 +0000 (09:41 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 25 Jun 2013 23:41:07 +0000 (16:41 -0700)
it does not compile since 09fc7d ("usb: musb: fix incorrect usage of
resource pointer"). What makes me wonder most is if source of the
Tested-by tag :)

Acked-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/musb/omap2430.c

index c7c1d7ab54710715632affbb21208c097ff7dacb..4315d351fc7dbb4e026a0dce65dd87b761f55561 100644 (file)
@@ -481,7 +481,7 @@ static u64 omap2430_dmamask = DMA_BIT_MASK(32);
 
 static int omap2430_probe(struct platform_device *pdev)
 {
-       struct resource musb_resouces[2];
+       struct resource                 musb_resources[2];
        struct musb_hdrc_platform_data  *pdata = pdev->dev.platform_data;
        struct omap_musb_board_data     *data;
        struct platform_device          *musb;
@@ -568,7 +568,7 @@ static int omap2430_probe(struct platform_device *pdev)
 
        INIT_WORK(&glue->omap_musb_mailbox_work, omap_musb_mailbox_work);
 
-       memset(musb_resouces, 0x00, sizeof(*musb_resources) *
+       memset(musb_resources, 0x00, sizeof(*musb_resources) *
                        ARRAY_SIZE(musb_resources));
 
        musb_resources[0].name = pdev->resource[0].name;