staging: comedi: amplc_dio200: rename struct dio200_layout_struct
authorIan Abbott <abbotti@mev.co.uk>
Wed, 24 Oct 2012 15:47:52 +0000 (16:47 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 24 Oct 2012 22:25:11 +0000 (15:25 -0700)
Now that the tag name `dio200_layout` is available, rename `struct
dio200_layout_struct` to `struct dio200_layout` as the `_struct` suffix
is a bit redundant and I plan to use this type in other places in the
module.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/amplc_dio200.c

index a5876f8709685fd89311bbb0e1be8504bd377589..b03e7e32fb1f070f24bf4d5276e41414b3cdf2dd 100644 (file)
@@ -351,7 +351,7 @@ enum dio200_sdtype { sd_none, sd_intr, sd_8255, sd_8254 };
 #define DIO200_MAX_SUBDEVS     7
 #define DIO200_MAX_ISNS                6
 
-struct dio200_layout_struct {
+struct dio200_layout {
        unsigned short n_subdevs;       /* number of subdevices */
        unsigned char sdtype[DIO200_MAX_SUBDEVS];       /* enum dio200_sdtype */
        unsigned char sdinfo[DIO200_MAX_SUBDEVS];       /* depends on sdtype */
@@ -359,7 +359,7 @@ struct dio200_layout_struct {
        char has_clk_gat_sce;   /* has clock/gate selection registers */
 };
 
-static const struct dio200_layout_struct dio200_layouts[] = {
+static const struct dio200_layout dio200_layouts[] = {
 #if DO_ISA
        [pc212_layout] = {
                          .n_subdevs = 6,
@@ -1195,8 +1195,7 @@ static int dio200_common_attach(struct comedi_device *dev, unsigned long iobase,
 {
        const struct dio200_board *thisboard = comedi_board(dev);
        struct dio200_private *devpriv = dev->private;
-       const struct dio200_layout_struct *layout =
-               &dio200_layouts[thisboard->layout];
+       const struct dio200_layout *layout = &dio200_layouts[thisboard->layout];
        struct comedi_subdevice *s;
        int sdx;
        unsigned int n;
@@ -1348,7 +1347,7 @@ static int __devinit dio200_attach_pci(struct comedi_device *dev,
 static void dio200_detach(struct comedi_device *dev)
 {
        const struct dio200_board *thisboard = comedi_board(dev);
-       const struct dio200_layout_struct *layout;
+       const struct dio200_layout *layout;
        unsigned n;
 
        if (dev->irq)