Staging: comedi: fix brace coding style issue in ni_atmio.c
This is a patch to the ni_atmio.c file which fixes a brace and whitespace warning found by the checkpatch.pl tool Signed-off-by: Jake Burton <jake5991@live.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
0bdd2b6207
commit
963ff7740d
1 changed files with 7 additions and 3 deletions
|
@ -268,8 +268,9 @@ static const struct ni_board_struct ni_boards[] = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const int ni_irqpin[] =
|
static const int ni_irqpin[] = {
|
||||||
{ -1, -1, -1, 0, 1, 2, -1, 3, -1, -1, 4, 5, 6, -1, -1, 7 };
|
-1, -1, -1, 0, 1, 2, -1, 3, -1, -1, 4, 5, 6, -1, -1, 7
|
||||||
|
};
|
||||||
|
|
||||||
#define interrupt_pin(a) (ni_irqpin[(a)])
|
#define interrupt_pin(a) (ni_irqpin[(a)])
|
||||||
|
|
||||||
|
@ -279,7 +280,10 @@ static const int ni_irqpin[] =
|
||||||
|
|
||||||
struct ni_private {
|
struct ni_private {
|
||||||
struct pnp_dev *isapnp_dev;
|
struct pnp_dev *isapnp_dev;
|
||||||
NI_PRIVATE_COMMON};
|
NI_PRIVATE_COMMON
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
#define devpriv ((struct ni_private *)dev->private)
|
#define devpriv ((struct ni_private *)dev->private)
|
||||||
|
|
||||||
/* How we access registers */
|
/* How we access registers */
|
||||||
|
|
Loading…
Add table
Reference in a new issue