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()
93 struct systick_device *sdev; in systick_shutdown() local
95 sdev = container_of(evt, struct systick_device, dev); in systick_shutdown()
97 if (sdev->irq_requested) in systick_shutdown()
99 sdev->irq_requested = 0; in systick_shutdown()
107 struct systick_device *sdev; in systick_set_oneshot() local
109 sdev = container_of(evt, struct systick_device, dev); in systick_set_oneshot()
111 if (!sdev->irq_requested) in systick_set_oneshot()
113 sdev->irq_requested = 1; in systick_set_oneshot()