staging: comedi: amplc_pci230: remove 'inline'
authorIan Abbott <abbotti@mev.co.uk>
Mon, 1 Sep 2014 11:03:48 +0000 (12:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Sep 2014 18:21:31 +0000 (11:21 -0700)
Some functions in "amplc_pci230.c" are declared `inline`.  Remove the
`inline` specifiers and let the compiler do what it wants with them.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/amplc_pci230.c

index 70b210bc4c022570d065289efc26f92f730cfde4..d8322682854ba3e3b793a86c8dc73d2ba3513f49 100644 (file)
@@ -573,8 +573,8 @@ static unsigned short pci230_ai_read(struct comedi_device *dev)
        return data;
 }
 
-static inline unsigned short pci230_ao_mangle_datum(struct comedi_device *dev,
-                                                   unsigned short datum)
+static unsigned short pci230_ao_mangle_datum(struct comedi_device *dev,
+                                            unsigned short datum)
 {
        const struct pci230_board *thisboard = comedi_board(dev);
        struct pci230_private *devpriv = dev->private;
@@ -593,9 +593,8 @@ static inline unsigned short pci230_ao_mangle_datum(struct comedi_device *dev,
        return datum;
 }
 
-static inline void pci230_ao_write_nofifo(struct comedi_device *dev,
-                                         unsigned short datum,
-                                         unsigned int chan)
+static void pci230_ao_write_nofifo(struct comedi_device *dev,
+                                  unsigned short datum, unsigned int chan)
 {
        struct pci230_private *devpriv = dev->private;
 
@@ -604,8 +603,8 @@ static inline void pci230_ao_write_nofifo(struct comedi_device *dev,
             devpriv->daqio + ((chan == 0) ? PCI230_DACOUT1 : PCI230_DACOUT2));
 }
 
-static inline void pci230_ao_write_fifo(struct comedi_device *dev,
-                                       unsigned short datum, unsigned int chan)
+static void pci230_ao_write_fifo(struct comedi_device *dev,
+                                unsigned short datum, unsigned int chan)
 {
        struct pci230_private *devpriv = dev->private;
 
@@ -650,8 +649,8 @@ static int get_resources(struct comedi_device *dev, unsigned int res_mask,
        return ok;
 }
 
-static inline int get_one_resource(struct comedi_device *dev,
-                                  unsigned int resource, unsigned char owner)
+static int get_one_resource(struct comedi_device *dev,
+                           unsigned int resource, unsigned char owner)
 {
        return get_resources(dev, 1U << resource, owner);
 }
@@ -675,14 +674,13 @@ static void put_resources(struct comedi_device *dev, unsigned int res_mask,
        spin_unlock_irqrestore(&devpriv->res_spinlock, irqflags);
 }
 
-static inline void put_one_resource(struct comedi_device *dev,
-                                   unsigned int resource, unsigned char owner)
+static void put_one_resource(struct comedi_device *dev,
+                            unsigned int resource, unsigned char owner)
 {
        put_resources(dev, 1U << resource, owner);
 }
 
-static inline void put_all_resources(struct comedi_device *dev,
-                                    unsigned char owner)
+static void put_all_resources(struct comedi_device *dev, unsigned char owner)
 {
        put_resources(dev, (1U << NUM_RESOURCES) - 1, owner);
 }
This page took 0.027817 seconds and 5 git commands to generate.