diff options
| author | Fu Wei <[email protected]> | 2017-01-18 13:25:29 +0000 |
|---|---|---|
| committer | Mark Rutland <[email protected]> | 2017-04-10 13:29:54 +0000 |
| commit | 097cd143dd871bfceacf4ed252b177cf515a1888 (patch) | |
| tree | 8d70718d78f916c8dac17c952429c94c6afe17ba /drivers/clocksource/arm_arch_timer.c | |
| parent | clocksource: arm_arch_timer: move enums and defines to header file (diff) | |
| download | kernel-097cd143dd871bfceacf4ed252b177cf515a1888.tar.gz kernel-097cd143dd871bfceacf4ed252b177cf515a1888.zip | |
clocksource: arm_arch_timer: add a new enum for spi type
This patch add a new enum "arch_timer_spi_nr" and use it in the driver.
Just for code's readability, no functional change.
Signed-off-by: Fu Wei <[email protected]>
Acked-by: Mark Rutland <[email protected]>
Signed-off-by: Mark Rutland <[email protected]>
Diffstat (limited to 'drivers/clocksource/arm_arch_timer.c')
| -rw-r--r-- | drivers/clocksource/arm_arch_timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c index 04218c1043e1..15059c958be7 100644 --- a/drivers/clocksource/arm_arch_timer.c +++ b/drivers/clocksource/arm_arch_timer.c @@ -1258,9 +1258,9 @@ static int __init arch_timer_mem_init(struct device_node *np) } if (arch_timer_mem_use_virtual) - irq = irq_of_parse_and_map(best_frame, 1); + irq = irq_of_parse_and_map(best_frame, ARCH_TIMER_VIRT_SPI); else - irq = irq_of_parse_and_map(best_frame, 0); + irq = irq_of_parse_and_map(best_frame, ARCH_TIMER_PHYS_SPI); ret = -EINVAL; if (!irq) { |
