mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-08 10:30:50 +00:00
staging: emxx_udc: fix style warnings: blank line after declarations
Signed-off-by: Vincenzo Scotti <vinc94@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8e69a81106
commit
7f39ae05ad
@ -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);
|
||||
}
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user