Commit ce1e3eb7 authored by Andrew Plummer's avatar Andrew Plummer Committed by Greg Kroah-Hartman

Staging: emxx_udc: emxx_udc: remove spaces before semicolons

Remove spaces before semicolons to remove checkpatch warnings.
Signed-off-by: default avatarAndrew Plummer <plummer574@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 35d49555
......@@ -77,14 +77,14 @@ struct nbu2ss_udc udc_controller;
/* Read */
static inline u32 _nbu2ss_readl(void *address)
{
return __raw_readl(address) ;
return __raw_readl(address);
}
/*-------------------------------------------------------------------------*/
/* Write */
static inline void _nbu2ss_writel(void *address, u32 udata)
{
__raw_writel(udata, address) ;
__raw_writel(udata, address);
}
/*-------------------------------------------------------------------------*/
......@@ -92,7 +92,7 @@ static inline void _nbu2ss_writel(void *address, u32 udata)
static inline void _nbu2ss_bitset(void *address, u32 udata)
{
u32 reg_dt = __raw_readl(address) | (udata);
__raw_writel(reg_dt, address) ;
__raw_writel(reg_dt, address);
}
/*-------------------------------------------------------------------------*/
......@@ -100,7 +100,7 @@ static inline void _nbu2ss_bitset(void *address, u32 udata)
static inline void _nbu2ss_bitclr(void *address, u32 udata)
{
u32 reg_dt = __raw_readl(address) & ~(udata);
__raw_writel(reg_dt, address) ;
__raw_writel(reg_dt, address);
}
#ifdef UDC_DEBUG_DUMP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment