Symbol: root_device
drivers/base/core.c
4246
static inline struct root_device *to_root_device(struct device *d)
drivers/base/core.c
4248
return container_of(d, struct root_device, dev);
drivers/base/core.c
4280
struct root_device *root;
drivers/base/core.c
4283
root = kzalloc_obj(struct root_device);
drivers/base/core.c
4327
struct root_device *root = to_root_device(dev);
drivers/firewire/core-card.c
469
struct fw_device *root_device = fw_node_get_device(root_node);
drivers/firewire/core-card.c
471
if (root_device == NULL) {
drivers/firewire/core-card.c
477
atomic_read(&root_device->state) == FW_DEVICE_RUNNING;
drivers/firewire/core-card.c
484
} else if (!root_device->cmc) {
drivers/firewire/core-card.c
538
struct fw_device *root_device = fw_node_get_device(root_node);
drivers/firewire/core-card.c
542
if (root_device && root_device->cmc) {
drivers/s390/crypto/vfio_ap_drv.c
117
matrix_dev->device.parent = root_device;
drivers/s390/crypto/vfio_ap_drv.c
139
root_device_unregister(root_device);
drivers/s390/crypto/vfio_ap_drv.c
145
struct device *root_device = matrix_dev->device.parent;
drivers/s390/crypto/vfio_ap_drv.c
150
root_device_unregister(root_device);
drivers/s390/crypto/vfio_ap_drv.c
89
struct device *root_device;
drivers/s390/crypto/vfio_ap_drv.c
91
root_device = root_device_register(VFIO_AP_ROOT_NAME);
drivers/s390/crypto/vfio_ap_drv.c
92
if (IS_ERR(root_device))
drivers/s390/crypto/vfio_ap_drv.c
93
return PTR_ERR(root_device);
fs/nfs/nfsroot.c
302
int __init nfs_root_data(char **root_device, char **root_data)
fs/nfs/nfsroot.c
313
*root_device = nfs_root_device;
include/linux/nfs_fs.h
533
extern int nfs_root_data(char **root_device, char **root_data); /*__init*/