summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authorFelipe Balbi2014-11-26 15:01:37 +0100
committerFelipe Balbi2014-12-22 17:24:10 +0100
commitb1d347830d811f3648a52d28700896c6c404d609 (patch)
treefaa18f9ea3c25d7a9b7065a93aa151bcb3432684 /drivers/usb/musb
parentusb: musb: debugfs: cope with blackfin's oddities (diff)
downloadkernel-qcow2-linux-b1d347830d811f3648a52d28700896c6c404d609.tar.gz
kernel-qcow2-linux-b1d347830d811f3648a52d28700896c6c404d609.tar.xz
kernel-qcow2-linux-b1d347830d811f3648a52d28700896c6c404d609.zip
usb: musb: blackfin: fix build break
commit cc92f681 (usb: musb: Populate new IO functions for blackfin) added a typo which prevented MUSB's blackfin glue layer from being built. Due to lack of tests and compilers for that architecture, the typo ended up being merged and causing a build regression. Fix that here Cc: Tony Lindgren <tony@atomide.com> Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r--drivers/usb/musb/blackfin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/blackfin.c b/drivers/usb/musb/blackfin.c
index a441a2de8619..178250145613 100644
--- a/drivers/usb/musb/blackfin.c
+++ b/drivers/usb/musb/blackfin.c
@@ -63,7 +63,7 @@ static void bfin_writew(void __iomem *addr, unsigned offset, u16 data)
bfin_write16(addr + offset, data);
}
-static void binf_writel(void __iomem *addr, unsigned offset, u32 data)
+static void bfin_writel(void __iomem *addr, unsigned offset, u32 data)
{
bfin_write16(addr + offset, (u16)data);
}