From: Tony Lindgren Date: Thu, 16 Aug 2007 08:31:40 +0000 (-0700) Subject: musb_hdrc: Search and replace wRelMajor with rev_major X-Git-Tag: v2.6.23-omap1~183 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=5d15a9bd957ce0ef3b47b058f41519fc3fcc40e8;p=linux-2.6-omap-h63xx.git musb_hdrc: Search and replace wRelMajor with rev_major Search and replace wRelMajor with rev_major Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/plat_uds.c b/drivers/usb/musb/plat_uds.c index a60e4b5333c..23bd5c9565d 100644 --- a/drivers/usb/musb/plat_uds.c +++ b/drivers/usb/musb/plat_uds.c @@ -1251,7 +1251,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb) #endif u8 reg; char *type; - u16 hwvers, wRelMajor, wRelMinor; + u16 hwvers, rev_major, wRelMinor; char aInfo[78], aRevision[32], aDate[12]; void __iomem *mbase = musb->mregs; int status = 0; @@ -1327,9 +1327,9 @@ static int __init musb_core_init(u16 wType, struct musb *musb) /* log release info */ hwvers = musb_readw(mbase, MUSB_HWVERS); - wRelMajor = (hwvers >> 10) & 0x1f; + rev_major = (hwvers >> 10) & 0x1f; wRelMinor = hwvers & 0x3ff; - snprintf(aRevision, 32, "%d.%d%s", wRelMajor, + snprintf(aRevision, 32, "%d.%d%s", rev_major, wRelMinor, (hwvers & 0x8000) ? "RC" : ""); printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n", musb_driver_name, type, aRevision, aDate);