Lines Matching refs:id
142 int ret, id = -1, devno; in __watchdog_register_device() local
165 id = ida_simple_get(&watchdog_ida, ret, in __watchdog_register_device()
169 if (id < 0) in __watchdog_register_device()
170 id = ida_simple_get(&watchdog_ida, 0, MAX_DOGS, GFP_KERNEL); in __watchdog_register_device()
172 if (id < 0) in __watchdog_register_device()
173 return id; in __watchdog_register_device()
174 wdd->id = id; in __watchdog_register_device()
178 ida_simple_remove(&watchdog_ida, id); in __watchdog_register_device()
179 if (!(id == 0 && ret == -EBUSY)) in __watchdog_register_device()
183 id = ida_simple_get(&watchdog_ida, 1, MAX_DOGS, GFP_KERNEL); in __watchdog_register_device()
184 if (id < 0) in __watchdog_register_device()
185 return id; in __watchdog_register_device()
186 wdd->id = id; in __watchdog_register_device()
190 ida_simple_remove(&watchdog_ida, id); in __watchdog_register_device()
197 NULL, "watchdog%d", wdd->id); in __watchdog_register_device()
200 ida_simple_remove(&watchdog_ida, id); in __watchdog_register_device()
246 ida_simple_remove(&watchdog_ida, wdd->id); in __watchdog_unregister_device()