Skip to content

Commit

Permalink
net/fddi: remove HWM_REVERSE() macro
Browse files Browse the repository at this point in the history
HWM_REVERSE() macro is unused, remove it.

Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
yalin wang authored and David S. Miller committed Aug 14, 2015
1 parent dd19f83 commit f02e58f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions drivers/net/fddi/skfp/h/hwmtm.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,6 @@
#define NULL 0
#endif

#ifdef LITTLE_ENDIAN
#define HWM_REVERSE(x) (x)
#else
#define HWM_REVERSE(x) ((((x)<<24L)&0xff000000L) + \
(((x)<< 8L)&0x00ff0000L) + \
(((x)>> 8L)&0x0000ff00L) + \
(((x)>>24L)&0x000000ffL))
#endif

#define C_INDIC (1L<<25)
#define A_INDIC (1L<<26)
#define RD_FS_LOCAL 0x80
Expand Down

0 comments on commit f02e58f

Please sign in to comment.