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

staging: comedi: 8255_pci: 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 71c01379
...@@ -178,8 +178,8 @@ static const struct pci_8255_boardinfo pci_8255_boards[] = { ...@@ -178,8 +178,8 @@ static const struct pci_8255_boardinfo pci_8255_boards[] = {
}; };
/* ripped from mite.h and mite_setup2() to avoid mite dependency */ /* ripped from mite.h and mite_setup2() to avoid mite dependency */
#define MITE_IODWBSR 0xc0 /* IO Device Window Base Size Register */ #define MITE_IODWBSR 0xc0 /* IO Device Window Base Size Register */
#define WENAB (1 << 7) /* window enable */ #define WENAB BIT(7) /* window enable */
static int pci_8255_mite_init(struct pci_dev *pcidev) static int pci_8255_mite_init(struct pci_dev *pcidev)
{ {
......
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