@@ -109,22 +109,20 @@ static int mdev_device_remove_cb(struct device *dev, void *data)
109
109
/*
110
110
* mdev_register_device : Register a device
111
111
* @dev: device structure representing parent device.
112
- * @ops: Parent device operation structure to be registered.
112
+ * @mdev_driver: Device driver to bind to the newly created mdev
113
113
*
114
114
* Add device to list of registered parent devices.
115
115
* Returns a negative value on error, otherwise 0.
116
116
*/
117
- int mdev_register_device (struct device * dev , const struct mdev_parent_ops * ops )
117
+ int mdev_register_device (struct device * dev , struct mdev_driver * mdev_driver )
118
118
{
119
119
int ret ;
120
120
struct mdev_parent * parent ;
121
121
char * env_string = "MDEV_STATE=registered" ;
122
122
char * envp [] = { env_string , NULL };
123
123
124
124
/* check for mandatory ops */
125
- if (!ops || !ops -> supported_type_groups )
126
- return - EINVAL ;
127
- if (!ops -> device_driver )
125
+ if (!mdev_driver -> supported_type_groups )
128
126
return - EINVAL ;
129
127
130
128
dev = get_device (dev );
@@ -151,7 +149,7 @@ int mdev_register_device(struct device *dev, const struct mdev_parent_ops *ops)
151
149
init_rwsem (& parent -> unreg_sem );
152
150
153
151
parent -> dev = dev ;
154
- parent -> ops = ops ;
152
+ parent -> mdev_driver = mdev_driver ;
155
153
156
154
if (!mdev_bus_compat_class ) {
157
155
mdev_bus_compat_class = class_compat_register ("mdev_bus" );
@@ -249,7 +247,7 @@ int mdev_device_create(struct mdev_type *type, const guid_t *uuid)
249
247
int ret ;
250
248
struct mdev_device * mdev , * tmp ;
251
249
struct mdev_parent * parent = type -> parent ;
252
- struct mdev_driver * drv = parent -> ops -> device_driver ;
250
+ struct mdev_driver * drv = parent -> mdev_driver ;
253
251
254
252
mutex_lock (& mdev_list_lock );
255
253
@@ -271,7 +269,6 @@ int mdev_device_create(struct mdev_type *type, const guid_t *uuid)
271
269
mdev -> dev .parent = parent -> dev ;
272
270
mdev -> dev .bus = & mdev_bus_type ;
273
271
mdev -> dev .release = mdev_device_release ;
274
- mdev -> dev .groups = parent -> ops -> mdev_attr_groups ;
275
272
mdev -> type = type ;
276
273
/* Pairs with the put in mdev_device_release() */
277
274
kobject_get (& type -> kobj );
0 commit comments