From: H Hartley Sweeten Date: Tue, 18 Jun 2013 19:14:36 +0000 (-0700) Subject: staging: comedi: addi-data: remove unused defines in addi_common.h X-Git-Tag: next-20130628~25^2~60 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d4c2fa605a2339d0e7ecef85dfd46ec82b0cce8c;p=karo-tx-linux.git staging: comedi: addi-data: remove unused defines in addi_common.h Due to the on-going cleanup of the addi-data drivers, there are a number of unused defines in addi_common.h. Remove the cruft. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/addi-data/addi_common.h b/drivers/staging/comedi/drivers/addi-data/addi_common.h index b03be13a1068..14726567b1e8 100644 --- a/drivers/staging/comedi/drivers/addi-data/addi_common.h +++ b/drivers/staging/comedi/drivers/addi-data/addi_common.h @@ -18,12 +18,8 @@ #include #include -#define LOBYTE(W) (unsigned char)((W) & 0xFF) -#define HIBYTE(W) (unsigned char)(((W) >> 8) & 0xFF) -#define MAKEWORD(H, L) (unsigned short)((L) | ((H) << 8)) #define LOWORD(W) (unsigned short)((W) & 0xFFFF) #define HIWORD(W) (unsigned short)(((W) >> 16) & 0xFFFF) -#define MAKEDWORD(H, L) (unsigned int)((L) | ((H) << 16)) #define ADDI_ENABLE 1 #define ADDI_DISABLE 0 @@ -33,7 +29,6 @@ #define ADDIDATA_NO_EEPROM 0 #define ADDIDATA_93C76 "93C76" #define ADDIDATA_S5920 "S5920" -#define ADDIDATA_S5933 "S5933" /* ADDIDATA Enable Disable */ #define ADDIDATA_ENABLE 1