staging: rtl8712: remove unused inline _RND256()
authorJames A Shackleford <shack@linux.com>
Mon, 23 Jun 2014 00:27:57 +0000 (20:27 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2014 00:31:02 +0000 (20:31 -0400)
Signed-off-by: James A Shackleford <shack@linux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/osdep_service.h

index 37ec56b085776b72546c89a1e7384d721c814aa8..9316eabb49b3a3ac15d3fd206685d52be5bb6d20 100644 (file)
@@ -184,11 +184,6 @@ static inline void flush_signals_thread(void)
                flush_signals(current);
 }
 
-static inline u32 _RND256(u32 sz)
-{
-       return ((sz >> 8) + ((sz & 255) ? 1 : 0)) << 8;
-}
-
 static inline u32 _RND512(u32 sz)
 {
        return ((sz >> 9) + ((sz & 511) ? 1 : 0)) << 9;
This page took 0.024761 seconds and 5 git commands to generate.