]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: comedi: 8253.h: rename i8253_cascade_ns_to_timer_2div()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 29 Apr 2014 19:59:33 +0000 (12:59 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 4 May 2014 00:06:31 +0000 (20:06 -0400)
All of the comedi drivers use the i8253_cascade_ns_to_timer macro
when calculating the divisors for the cascaded timers. This macro
just causes the i8253_cascade_ns_to_timer_2div() inline to be used.

Rename i8253_cascade_ns_to_timer_2div() and remove the macro.

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

index e3d737cf73029070248ff603b13ce89a6abf0c49..88cd6f251dcce7b8894457eea7d58098dc742176 100644 (file)
@@ -30,8 +30,6 @@
 #define I8254_OSC_BASE_2MHZ            500
 #define I8254_OSC_BASE_1MHZ            1000
 
-#define i8253_cascade_ns_to_timer i8253_cascade_ns_to_timer_2div
-
 static inline void i8253_cascade_ns_to_timer_2div_old(int i8253_osc_base,
                                                      unsigned int *d1,
                                                      unsigned int *d2,
@@ -125,11 +123,11 @@ static inline void i8253_cascade_ns_to_timer_power(int i8253_osc_base,
        *d2 = div2 & 0xffff;
 }
 
-static inline void i8253_cascade_ns_to_timer_2div(int i8253_osc_base,
-                                                 unsigned int *d1,
-                                                 unsigned int *d2,
-                                                 unsigned int *nanosec,
-                                                 int round_mode)
+static inline void i8253_cascade_ns_to_timer(int i8253_osc_base,
+                                            unsigned int *d1,
+                                            unsigned int *d2,
+                                            unsigned int *nanosec,
+                                            int round_mode)
 {
        unsigned int divider;
        unsigned int div1, div2;