ia64: Use setup_timer
authorVaishali Thakkar <vthakkar1994@gmail.com>
Thu, 11 Jun 2015 04:48:17 +0000 (10:18 +0530)
committerTony Luck <tony.luck@intel.com>
Mon, 15 Jun 2015 22:45:18 +0000 (15:45 -0700)
Use the timer API function setup_timer instead of structure field
assignments to initialize a timer.

A simplified version of the Coccinelle semantic patch that performs
this transformation is as follows:

@change@
expression e1, e2, a;
@@

-init_timer(&e1);
+setup_timer(&e1, a, 0UL);
... when != a = e2
-e1.function = a;

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
arch/ia64/kernel/mca.c

index dd5801eb4c693b90b84b2567c733e19d20a3d30f..2889412e03ebbf8e7f66db5ada98ca53f8927f59 100644 (file)
@@ -2117,8 +2117,7 @@ ia64_mca_late_init(void)
        register_hotcpu_notifier(&mca_cpu_notifier);
 
        /* Setup the CMCI/P vector and handler */
-       init_timer(&cmc_poll_timer);
-       cmc_poll_timer.function = ia64_mca_cmc_poll;
+       setup_timer(&cmc_poll_timer, ia64_mca_cmc_poll, 0UL);
 
        /* Unmask/enable the vector */
        cmc_polling_enabled = 0;
@@ -2129,8 +2128,7 @@ ia64_mca_late_init(void)
 #ifdef CONFIG_ACPI
        /* Setup the CPEI/P vector and handler */
        cpe_vector = acpi_request_vector(ACPI_INTERRUPT_CPEI);
-       init_timer(&cpe_poll_timer);
-       cpe_poll_timer.function = ia64_mca_cpe_poll;
+       setup_timer(&cpe_poll_timer, ia64_mca_cpe_poll, 0UL);
 
        {
                unsigned int irq;
This page took 0.039231 seconds and 5 git commands to generate.