Commit ce6295e2 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: adl_pci6208: prefer using the BIT macro

As suggested by checkpatch.pl, use the BIT macro to define the
register bits.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dcfd3494
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
*/ */
#define PCI6208_AO_CONTROL(x) (0x00 + (2 * (x))) #define PCI6208_AO_CONTROL(x) (0x00 + (2 * (x)))
#define PCI6208_AO_STATUS 0x00 #define PCI6208_AO_STATUS 0x00
#define PCI6208_AO_STATUS_DATA_SEND (1 << 0) #define PCI6208_AO_STATUS_DATA_SEND BIT(0)
#define PCI6208_DIO 0x40 #define PCI6208_DIO 0x40
#define PCI6208_DIO_DO_MASK (0x0f) #define PCI6208_DIO_DO_MASK (0x0f)
#define PCI6208_DIO_DO_SHIFT (0) #define PCI6208_DIO_DO_SHIFT (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment