dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
H Hartley Sweeten 2012-10-31 16:59:30 -07:00 committed by Greg Kroah-Hartman
parent e53b9d6d8b
commit f2f8486e7a
1 changed files with 0 additions and 3 deletions

View File

@ -18,9 +18,6 @@
#include <linux/sched.h>
#include <linux/interrupt.h>
#define ERROR -1
#define SUCCESS 1
#define LOBYTE(W) (unsigned char)((W) & 0xFF)
#define HIBYTE(W) (unsigned char)(((W) >> 8) & 0xFF)
#define MAKEWORD(H, L) (unsigned short)((L) | ((H) << 8))