Skip to content

Commit

Permalink
staging: emxx_udc: fix style warnings: blank line after declarations
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Scotti <vinc94@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Vincenzo Scotti authored and Greg Kroah-Hartman committed Sep 11, 2014
1 parent 8e69a81 commit 7f39ae0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/staging/emxx_udc/emxx_udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +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);
}

Expand All @@ -100,6 +101,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);
}

Expand Down

0 comments on commit 7f39ae0

Please sign in to comment.