mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
Staging: comedi: Remove serial2002_board typedef
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
dfb0503e2b
commit
ca9ed0f295
@ -46,11 +46,11 @@ Status: in development
|
||||
* boards in this way is optional, and completely driver-dependent.
|
||||
* Some drivers use arrays such as this, other do not.
|
||||
*/
|
||||
typedef struct serial2002_board_struct {
|
||||
struct serial2002_board {
|
||||
const char *name;
|
||||
} serial2002_board;
|
||||
};
|
||||
|
||||
static const serial2002_board serial2002_boards[] = {
|
||||
static const struct serial2002_board serial2002_boards[] = {
|
||||
{
|
||||
name: "serial2002"}
|
||||
};
|
||||
@ -58,7 +58,7 @@ static const serial2002_board serial2002_boards[] = {
|
||||
/*
|
||||
* Useful for shorthand access to the particular board structure
|
||||
*/
|
||||
#define thisboard ((const serial2002_board *)dev->board_ptr)
|
||||
#define thisboard ((const struct serial2002_board *)dev->board_ptr)
|
||||
|
||||
struct serial2002_range_table_t {
|
||||
|
||||
@ -95,8 +95,8 @@ struct comedi_driver driver_serial2002 = {
|
||||
attach:serial2002_attach,
|
||||
detach:serial2002_detach,
|
||||
board_name:&serial2002_boards[0].name,
|
||||
offset:sizeof(serial2002_board),
|
||||
num_names:sizeof(serial2002_boards) / sizeof(serial2002_board),
|
||||
offset:sizeof(struct serial2002_board),
|
||||
num_names:sizeof(serial2002_boards) / sizeof(struct serial2002_board),
|
||||
};
|
||||
|
||||
static int serial2002_di_rinsn(struct comedi_device * dev, struct comedi_subdevice * s,
|
||||
|
Loading…
Reference in New Issue
Block a user