Lines Matching refs:ctrl
33 unsigned int ctrl; in Wdog_Enable() local
34 ctrl = (WDT_EN); in Wdog_Enable()
35 ctrl |= 0x01; in Wdog_Enable()
37 WDT_EN = ctrl; in Wdog_Enable()
44 unsigned int ctrl; in Wdog_Disable() local
45 ctrl = (WDT_EN); in Wdog_Disable()
46 ctrl &= ~0x01; in Wdog_Disable()
47 WDT_EN = ctrl; in Wdog_Disable()
54 unsigned int ctrl; in Wdog_Set() local
55 ctrl = (WDT_SET); in Wdog_Set()
56 ctrl |= 0x01; in Wdog_Set()
57 WDT_SET = ctrl; in Wdog_Set()
64 unsigned int ctrl; in Wdog_Reset() local
65 ctrl = (WDT_SET); in Wdog_Reset()
66 ctrl &= ~0x01; in Wdog_Reset()
67 WDT_SET = ctrl; in Wdog_Reset()