timer-of.h (552c69b36ebd966186573b9c7a286b390935cce1) | timer-of.h (7eeb7189c4d4b258fc80435a98181735e710f02f) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __TIMER_OF_H__ 3#define __TIMER_OF_H__ 4 5#include <linux/clockchips.h> 6 7#define TIMER_OF_BASE 0x1 8#define TIMER_OF_CLOCK 0x2 9#define TIMER_OF_IRQ 0x4 10 11struct of_timer_irq { 12 int irq; 13 int index; | 1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __TIMER_OF_H__ 3#define __TIMER_OF_H__ 4 5#include <linux/clockchips.h> 6 7#define TIMER_OF_BASE 0x1 8#define TIMER_OF_CLOCK 0x2 9#define TIMER_OF_IRQ 0x4 10 11struct of_timer_irq { 12 int irq; 13 int index; |
14 int percpu; | |
15 const char *name; 16 unsigned long flags; 17 irq_handler_t handler; 18}; 19 20struct of_timer_base { 21 void __iomem *base; 22 const char *name; --- 52 unchanged lines hidden --- | 14 const char *name; 15 unsigned long flags; 16 irq_handler_t handler; 17}; 18 19struct of_timer_base { 20 void __iomem *base; 21 const char *name; --- 52 unchanged lines hidden --- |