Lines Matching refs:sdev
45 struct systick_device *sdev; in systick_next_event() local
48 sdev = container_of(evt, struct systick_device, dev); in systick_next_event()
49 count = ioread32(sdev->membase + SYSTICK_COUNT); in systick_next_event()
51 iowrite32(count, sdev->membase + SYSTICK_COMPARE); in systick_next_event()
87 struct systick_device *sdev; in systick_shutdown() local
89 sdev = container_of(evt, struct systick_device, dev); in systick_shutdown()
91 if (sdev->irq_requested) in systick_shutdown()
93 sdev->irq_requested = 0; in systick_shutdown()
102 struct systick_device *sdev; in systick_set_oneshot() local
105 sdev = container_of(evt, struct systick_device, dev); in systick_set_oneshot()
107 if (!sdev->irq_requested) { in systick_set_oneshot()
112 sdev->irq_requested = 1; in systick_set_oneshot()