Lines Matching refs:id
113 int ret, id, devno; in watchdog_register_device() local
131 id = ida_simple_get(&watchdog_ida, 0, MAX_DOGS, GFP_KERNEL); in watchdog_register_device()
132 if (id < 0) in watchdog_register_device()
133 return id; in watchdog_register_device()
134 wdd->id = id; in watchdog_register_device()
138 ida_simple_remove(&watchdog_ida, id); in watchdog_register_device()
139 if (!(id == 0 && ret == -EBUSY)) in watchdog_register_device()
143 id = ida_simple_get(&watchdog_ida, 1, MAX_DOGS, GFP_KERNEL); in watchdog_register_device()
144 if (id < 0) in watchdog_register_device()
145 return id; in watchdog_register_device()
146 wdd->id = id; in watchdog_register_device()
150 ida_simple_remove(&watchdog_ida, id); in watchdog_register_device()
157 NULL, "watchdog%d", wdd->id); in watchdog_register_device()
160 ida_simple_remove(&watchdog_ida, id); in watchdog_register_device()
189 ida_simple_remove(&watchdog_ida, wdd->id); in watchdog_unregister_device()