Lines Matching refs:netiucv_dev
130 static struct device *netiucv_dev; variable
2199 device_unregister(netiucv_dev); in netiucv_exit()
2226 netiucv_dev = kzalloc(sizeof(struct device), GFP_KERNEL); in netiucv_init()
2227 if (!netiucv_dev) { in netiucv_init()
2231 dev_set_name(netiucv_dev, "netiucv"); in netiucv_init()
2232 netiucv_dev->bus = &iucv_bus; in netiucv_init()
2233 netiucv_dev->parent = iucv_root; in netiucv_init()
2234 netiucv_dev->release = (void (*)(struct device *))kfree; in netiucv_init()
2235 netiucv_dev->driver = &netiucv_driver; in netiucv_init()
2236 rc = device_register(netiucv_dev); in netiucv_init()
2238 put_device(netiucv_dev); in netiucv_init()