Lines Matching defs:rtc_device
175 struct rtc_device struct
177 struct device dev;
178 struct module *owner;
180 int id;
181 char name[RTC_DEVICE_NAME_SIZE];
183 const struct rtc_class_ops *ops;
184 struct mutex ops_lock;
186 struct cdev char_dev;
187 unsigned long flags;
189 unsigned long irq_data;
190 spinlock_t irq_lock;
191 wait_queue_head_t irq_queue;
192 struct fasync_struct *async_queue;
194 struct rtc_task *irq_task;
218 #define to_rtc_device(d) container_of(d, struct rtc_device, dev) argument