Lines Matching defs:rtc_device
104 struct rtc_device struct
106 struct device dev;
107 struct module *owner;
109 int id;
110 char name[RTC_DEVICE_NAME_SIZE];
112 const struct rtc_class_ops *ops;
113 struct mutex ops_lock;
115 struct cdev char_dev;
116 unsigned long flags;
118 unsigned long irq_data;
119 spinlock_t irq_lock;
120 wait_queue_head_t irq_queue;
121 struct fasync_struct *async_queue;
123 struct rtc_task *irq_task;
124 spinlock_t irq_task_lock;
148 #define to_rtc_device(d) container_of(d, struct rtc_device, dev) argument