Lines Matching refs:netiucv_dev
116 static struct device *netiucv_dev; variable
2159 device_unregister(netiucv_dev); in netiucv_exit()
2186 netiucv_dev = kzalloc(sizeof(struct device), GFP_KERNEL); in netiucv_init()
2187 if (!netiucv_dev) { in netiucv_init()
2191 dev_set_name(netiucv_dev, "netiucv"); in netiucv_init()
2192 netiucv_dev->bus = &iucv_bus; in netiucv_init()
2193 netiucv_dev->parent = iucv_root; in netiucv_init()
2194 netiucv_dev->release = (void (*)(struct device *))kfree; in netiucv_init()
2195 netiucv_dev->driver = &netiucv_driver; in netiucv_init()
2196 rc = device_register(netiucv_dev); in netiucv_init()
2198 put_device(netiucv_dev); in netiucv_init()