From 65043b31bde21093bf0b78b24f480d4801f39b58 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 16 May 2002 00:48:24 +0000 Subject: [PATCH] Fix long-standing spelling error of writable --- include/linux/comedi.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/linux/comedi.h b/include/linux/comedi.h index f9d84035..037ae5cc 100644 --- a/include/linux/comedi.h +++ b/include/linux/comedi.h @@ -175,7 +175,8 @@ typedef unsigned short sampl_t; #define SDF_CMD 0x1000 /* can do commands */ #define SDF_READABLE 0x00010000 /* subdevice can be read (e.g. analog input) */ -#define SDF_WRITEABLE 0x00020000 /* subdevice can be written (e.g. analog output) */ +#define SDF_WRITABLE 0x00020000 /* subdevice can be written (e.g. analog output) */ +#define SDF_WRITEABLE SDF_WRITABLE /* spelling error in API */ #define SDF_INTERNAL 0x00040000 /* subdevice does not have externally visible lines */ #define SDF_RT 0x00080000 /* subdevice is RT capable */ #define SDF_GROUND 0x00100000 /* can do aref=ground */ -- 2.26.2