Lines Matching defs:rtc_device
112 struct rtc_device { struct
113 struct device dev;
114 struct module *owner;
116 int id;
117 char name[RTC_DEVICE_NAME_SIZE];
119 const struct rtc_class_ops *ops;
120 struct mutex ops_lock;
122 struct cdev char_dev;
123 unsigned long flags;
125 unsigned long irq_data;
126 spinlock_t irq_lock;
127 wait_queue_head_t irq_queue;
128 struct fasync_struct *async_queue;
130 struct rtc_task *irq_task;
131 spinlock_t irq_task_lock;
155 #define to_rtc_device(d) container_of(d, struct rtc_device, dev) argument