Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: comedi: addi-data: remove ERROR and SUCCESS defines

These are not used. Remove them.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

H Hartley Sweeten and committed by
Greg Kroah-Hartman
f2f8486e e53b9d6d

-3
-3
drivers/staging/comedi/drivers/addi-data/addi_common.h
··· 18 18 #include <linux/sched.h> 19 19 #include <linux/interrupt.h> 20 20 21 - #define ERROR -1 22 - #define SUCCESS 1 23 - 24 21 #define LOBYTE(W) (unsigned char)((W) & 0xFF) 25 22 #define HIBYTE(W) (unsigned char)(((W) >> 8) & 0xFF) 26 23 #define MAKEWORD(H, L) (unsigned short)((L) | ((H) << 8))