mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: rtl8712: remove unused inline _RND256()
Signed-off-by: James A Shackleford <shack@linux.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fa86745332
commit
d6a61ba40c
1 changed files with 0 additions and 5 deletions
|
@ -184,11 +184,6 @@ static inline void flush_signals_thread(void)
|
||||||
flush_signals(current);
|
flush_signals(current);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline u32 _RND256(u32 sz)
|
|
||||||
{
|
|
||||||
return ((sz >> 8) + ((sz & 255) ? 1 : 0)) << 8;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline u32 _RND512(u32 sz)
|
static inline u32 _RND512(u32 sz)
|
||||||
{
|
{
|
||||||
return ((sz >> 9) + ((sz & 511) ? 1 : 0)) << 9;
|
return ((sz >> 9) + ((sz & 511) ? 1 : 0)) << 9;
|
||||||
|
|
Loading…
Reference in a new issue