Skip to content

Commit

Permalink
staging: comedi: amplc_dio200: rename enum dio200_layout
Browse files Browse the repository at this point in the history
Rename `enum dio200_layout` to `enum dio200_layout_idx`.  It's only used
once and frees up the `dio200_layout` tag for something else later.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Ian Abbott authored and Greg Kroah-Hartman committed Oct 24, 2012
1 parent 96a9319 commit 853376e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/comedi/drivers/amplc_dio200.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ enum dio200_model {
pc272e_model, pci272_model,
};

enum dio200_layout {
enum dio200_layout_idx {
#if DO_ISA
pc212_layout,
pc214_layout,
Expand All @@ -287,7 +287,7 @@ struct dio200_board {
unsigned short devid;
enum dio200_bustype bustype;
enum dio200_model model;
enum dio200_layout layout;
enum dio200_layout_idx layout;
};

static const struct dio200_board dio200_boards[] = {
Expand Down

0 comments on commit 853376e

Please sign in to comment.