2 * Intel Management Engine Interface (Intel MEI) Linux driver
3 * Copyright (c) 2012-2013, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 #include <linux/module.h>
17 #include <linux/device.h>
18 #include <linux/kernel.h>
19 #include <linux/sched.h>
20 #include <linux/init.h>
21 #include <linux/errno.h>
22 #include <linux/slab.h>
23 #include <linux/mutex.h>
24 #include <linux/interrupt.h>
25 #include <linux/mei_cl_bus.h>
30 #define to_mei_cl_driver(d) container_of(d, struct mei_cl_driver, driver)
31 #define to_mei_cl_device(d) container_of(d, struct mei_cl_device, dev)
34 * __mei_cl_send - internal client send (write)
37 * @buf: buffer to send
38 * @length: buffer length
39 * @blocking: wait for write completion
41 * Return: written size bytes or < 0 on error
43 ssize_t
__mei_cl_send(struct mei_cl
*cl
, u8
*buf
, size_t length
,
46 struct mei_device
*bus
;
50 if (WARN_ON(!cl
|| !cl
->dev
))
55 mutex_lock(&bus
->device_lock
);
56 if (bus
->dev_state
!= MEI_DEV_ENABLED
) {
61 if (!mei_cl_is_connected(cl
)) {
66 /* Check if we have an ME client device */
67 if (!mei_me_cl_is_active(cl
->me_cl
)) {
72 if (length
> mei_cl_mtu(cl
)) {
77 cb
= mei_cl_alloc_cb(cl
, length
, MEI_FOP_WRITE
, NULL
);
83 memcpy(cb
->buf
.data
, buf
, length
);
85 rets
= mei_cl_write(cl
, cb
, blocking
);
88 mutex_unlock(&bus
->device_lock
);
94 * __mei_cl_recv - internal client receive (read)
97 * @buf: buffer to receive
98 * @length: buffer length
100 * Return: read size in bytes of < 0 on error
102 ssize_t
__mei_cl_recv(struct mei_cl
*cl
, u8
*buf
, size_t length
)
104 struct mei_device
*bus
;
105 struct mei_cl_cb
*cb
;
109 if (WARN_ON(!cl
|| !cl
->dev
))
114 mutex_lock(&bus
->device_lock
);
115 if (bus
->dev_state
!= MEI_DEV_ENABLED
) {
120 cb
= mei_cl_read_cb(cl
, NULL
);
124 rets
= mei_cl_read_start(cl
, length
, NULL
);
125 if (rets
&& rets
!= -EBUSY
)
128 /* wait on event only if there is no other waiter */
129 /* synchronized under device mutex */
130 if (!waitqueue_active(&cl
->rx_wait
)) {
132 mutex_unlock(&bus
->device_lock
);
134 if (wait_event_interruptible(cl
->rx_wait
,
135 (!list_empty(&cl
->rd_completed
)) ||
136 (!mei_cl_is_connected(cl
)))) {
138 if (signal_pending(current
))
143 mutex_lock(&bus
->device_lock
);
145 if (!mei_cl_is_connected(cl
)) {
151 cb
= mei_cl_read_cb(cl
, NULL
);
163 r_length
= min_t(size_t, length
, cb
->buf_idx
);
164 memcpy(buf
, cb
->buf
.data
, r_length
);
170 mutex_unlock(&bus
->device_lock
);
176 * mei_cldev_send - me device send (write)
178 * @cldev: me client device
179 * @buf: buffer to send
180 * @length: buffer length
182 * Return: written size in bytes or < 0 on error
184 ssize_t
mei_cldev_send(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
)
186 struct mei_cl
*cl
= cldev
->cl
;
191 return __mei_cl_send(cl
, buf
, length
, 1);
193 EXPORT_SYMBOL_GPL(mei_cldev_send
);
196 * mei_cldev_recv - client receive (read)
198 * @cldev: me client device
199 * @buf: buffer to receive
200 * @length: buffer length
202 * Return: read size in bytes of < 0 on error
204 ssize_t
mei_cldev_recv(struct mei_cl_device
*cldev
, u8
*buf
, size_t length
)
206 struct mei_cl
*cl
= cldev
->cl
;
211 return __mei_cl_recv(cl
, buf
, length
);
213 EXPORT_SYMBOL_GPL(mei_cldev_recv
);
216 * mei_cl_bus_event_work - dispatch rx event for a bus device
217 * and schedule new work
221 static void mei_cl_bus_event_work(struct work_struct
*work
)
223 struct mei_cl_device
*cldev
;
224 struct mei_device
*bus
;
226 cldev
= container_of(work
, struct mei_cl_device
, event_work
);
231 cldev
->event_cb(cldev
, cldev
->events
, cldev
->event_context
);
235 /* Prepare for the next read */
236 if (cldev
->events_mask
& BIT(MEI_CL_EVENT_RX
)) {
237 mutex_lock(&bus
->device_lock
);
238 mei_cl_read_start(cldev
->cl
, mei_cl_mtu(cldev
->cl
), NULL
);
239 mutex_unlock(&bus
->device_lock
);
244 * mei_cl_bus_notify_event - schedule notify cb on bus client
248 * Return: true if event was scheduled
249 * false if the client is not waiting for event
251 bool mei_cl_bus_notify_event(struct mei_cl
*cl
)
253 struct mei_cl_device
*cldev
= cl
->cldev
;
255 if (!cldev
|| !cldev
->event_cb
)
258 if (!(cldev
->events_mask
& BIT(MEI_CL_EVENT_NOTIF
)))
264 set_bit(MEI_CL_EVENT_NOTIF
, &cldev
->events
);
266 schedule_work(&cldev
->event_work
);
268 cl
->notify_ev
= false;
274 * mei_cl_bus_rx_event - schedule rx event
278 * Return: true if event was scheduled
279 * false if the client is not waiting for event
281 bool mei_cl_bus_rx_event(struct mei_cl
*cl
)
283 struct mei_cl_device
*cldev
= cl
->cldev
;
285 if (!cldev
|| !cldev
->event_cb
)
288 if (!(cldev
->events_mask
& BIT(MEI_CL_EVENT_RX
)))
291 set_bit(MEI_CL_EVENT_RX
, &cldev
->events
);
293 schedule_work(&cldev
->event_work
);
299 * mei_cldev_register_event_cb - register event callback
301 * @cldev: me client devices
302 * @event_cb: callback function
303 * @events_mask: requested events bitmask
304 * @context: driver context data
306 * Return: 0 on success
307 * -EALREADY if an callback is already registered
310 int mei_cldev_register_event_cb(struct mei_cl_device
*cldev
,
311 unsigned long events_mask
,
312 mei_cldev_event_cb_t event_cb
, void *context
)
314 struct mei_device
*bus
= cldev
->bus
;
321 cldev
->events_mask
= events_mask
;
322 cldev
->event_cb
= event_cb
;
323 cldev
->event_context
= context
;
324 INIT_WORK(&cldev
->event_work
, mei_cl_bus_event_work
);
326 if (cldev
->events_mask
& BIT(MEI_CL_EVENT_RX
)) {
327 mutex_lock(&bus
->device_lock
);
328 ret
= mei_cl_read_start(cldev
->cl
, mei_cl_mtu(cldev
->cl
), NULL
);
329 mutex_unlock(&bus
->device_lock
);
330 if (ret
&& ret
!= -EBUSY
)
334 if (cldev
->events_mask
& BIT(MEI_CL_EVENT_NOTIF
)) {
335 mutex_lock(&bus
->device_lock
);
336 ret
= mei_cl_notify_request(cldev
->cl
, NULL
, event_cb
? 1 : 0);
337 mutex_unlock(&bus
->device_lock
);
344 EXPORT_SYMBOL_GPL(mei_cldev_register_event_cb
);
347 * mei_cldev_get_drvdata - driver data getter
349 * @cldev: mei client device
351 * Return: driver private data
353 void *mei_cldev_get_drvdata(const struct mei_cl_device
*cldev
)
355 return dev_get_drvdata(&cldev
->dev
);
357 EXPORT_SYMBOL_GPL(mei_cldev_get_drvdata
);
360 * mei_cldev_set_drvdata - driver data setter
362 * @cldev: mei client device
363 * @data: data to store
365 void mei_cldev_set_drvdata(struct mei_cl_device
*cldev
, void *data
)
367 dev_set_drvdata(&cldev
->dev
, data
);
369 EXPORT_SYMBOL_GPL(mei_cldev_set_drvdata
);
372 * mei_cldev_uuid - return uuid of the underlying me client
374 * @cldev: mei client device
376 * Return: me client uuid
378 const uuid_le
*mei_cldev_uuid(const struct mei_cl_device
*cldev
)
380 return mei_me_cl_uuid(cldev
->me_cl
);
382 EXPORT_SYMBOL_GPL(mei_cldev_uuid
);
385 * mei_cldev_ver - return protocol version of the underlying me client
387 * @cldev: mei client device
389 * Return: me client protocol version
391 u8
mei_cldev_ver(const struct mei_cl_device
*cldev
)
393 return mei_me_cl_ver(cldev
->me_cl
);
395 EXPORT_SYMBOL_GPL(mei_cldev_ver
);
398 * mei_cldev_enabled - check whether the device is enabled
400 * @cldev: mei client device
402 * Return: true if me client is initialized and connected
404 bool mei_cldev_enabled(struct mei_cl_device
*cldev
)
406 return cldev
->cl
&& mei_cl_is_connected(cldev
->cl
);
408 EXPORT_SYMBOL_GPL(mei_cldev_enabled
);
411 * mei_cldev_enable_device - enable me client device
412 * create connection with me client
414 * @cldev: me client device
416 * Return: 0 on success and < 0 on error
418 int mei_cldev_enable(struct mei_cl_device
*cldev
)
420 struct mei_device
*bus
= cldev
->bus
;
427 mutex_lock(&bus
->device_lock
);
428 cl
= mei_cl_alloc_linked(bus
);
429 mutex_unlock(&bus
->device_lock
);
432 /* update pointers */
437 mutex_lock(&bus
->device_lock
);
438 if (mei_cl_is_connected(cl
)) {
443 if (!mei_me_cl_is_active(cldev
->me_cl
)) {
444 dev_err(&cldev
->dev
, "me client is not active\n");
449 ret
= mei_cl_connect(cl
, cldev
->me_cl
, NULL
);
451 dev_err(&cldev
->dev
, "cannot connect\n");
454 mutex_unlock(&bus
->device_lock
);
458 EXPORT_SYMBOL_GPL(mei_cldev_enable
);
461 * mei_cldev_disable - disable me client device
462 * disconnect form the me client
464 * @cldev: me client device
466 * Return: 0 on success and < 0 on error
468 int mei_cldev_disable(struct mei_cl_device
*cldev
)
470 struct mei_device
*bus
;
474 if (!cldev
|| !cldev
->cl
)
481 cldev
->event_cb
= NULL
;
483 mutex_lock(&bus
->device_lock
);
485 if (!mei_cl_is_connected(cl
)) {
486 dev_err(bus
->dev
, "Already disconnected");
491 err
= mei_cl_disconnect(cl
);
493 dev_err(bus
->dev
, "Could not disconnect from the ME client");
496 /* Flush queues and remove any pending read */
497 mei_cl_flush_queues(cl
, NULL
);
503 mutex_unlock(&bus
->device_lock
);
506 EXPORT_SYMBOL_GPL(mei_cldev_disable
);
509 * mei_cl_device_find - find matching entry in the driver id table
511 * @cldev: me client device
512 * @cldrv: me client driver
514 * Return: id on success; NULL if no id is matching
517 struct mei_cl_device_id
*mei_cl_device_find(struct mei_cl_device
*cldev
,
518 struct mei_cl_driver
*cldrv
)
520 const struct mei_cl_device_id
*id
;
525 uuid
= mei_me_cl_uuid(cldev
->me_cl
);
526 version
= mei_me_cl_ver(cldev
->me_cl
);
528 id
= cldrv
->id_table
;
529 while (uuid_le_cmp(NULL_UUID_LE
, id
->uuid
)) {
530 if (!uuid_le_cmp(*uuid
, id
->uuid
)) {
534 if (strncmp(cldev
->name
, id
->name
,
538 if (id
->version
!= MEI_CL_VERSION_ANY
)
539 if (id
->version
!= version
)
552 * mei_cl_device_match - device match function
557 * Return: 1 if matching device was found 0 otherwise
559 static int mei_cl_device_match(struct device
*dev
, struct device_driver
*drv
)
561 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
562 struct mei_cl_driver
*cldrv
= to_mei_cl_driver(drv
);
563 const struct mei_cl_device_id
*found_id
;
568 if (!cldev
->do_match
)
571 if (!cldrv
|| !cldrv
->id_table
)
574 found_id
= mei_cl_device_find(cldev
, cldrv
);
582 * mei_cl_device_probe - bus probe function
586 * Return: 0 on success; < 0 otherwise
588 static int mei_cl_device_probe(struct device
*dev
)
590 struct mei_cl_device
*cldev
;
591 struct mei_cl_driver
*cldrv
;
592 const struct mei_cl_device_id
*id
;
595 cldev
= to_mei_cl_device(dev
);
596 cldrv
= to_mei_cl_driver(dev
->driver
);
601 if (!cldrv
|| !cldrv
->probe
)
604 id
= mei_cl_device_find(cldev
, cldrv
);
608 ret
= cldrv
->probe(cldev
, id
);
612 __module_get(THIS_MODULE
);
617 * mei_cl_device_remove - remove device from the bus
621 * Return: 0 on success; < 0 otherwise
623 static int mei_cl_device_remove(struct device
*dev
)
625 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
626 struct mei_cl_driver
*cldrv
;
629 if (!cldev
|| !dev
->driver
)
632 if (cldev
->event_cb
) {
633 cldev
->event_cb
= NULL
;
634 cancel_work_sync(&cldev
->event_work
);
637 cldrv
= to_mei_cl_driver(dev
->driver
);
639 ret
= cldrv
->remove(cldev
);
641 module_put(THIS_MODULE
);
647 static ssize_t
name_show(struct device
*dev
, struct device_attribute
*a
,
650 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
652 return scnprintf(buf
, PAGE_SIZE
, "%s", cldev
->name
);
654 static DEVICE_ATTR_RO(name
);
656 static ssize_t
uuid_show(struct device
*dev
, struct device_attribute
*a
,
659 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
660 const uuid_le
*uuid
= mei_me_cl_uuid(cldev
->me_cl
);
662 return scnprintf(buf
, PAGE_SIZE
, "%pUl", uuid
);
664 static DEVICE_ATTR_RO(uuid
);
666 static ssize_t
version_show(struct device
*dev
, struct device_attribute
*a
,
669 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
670 u8 version
= mei_me_cl_ver(cldev
->me_cl
);
672 return scnprintf(buf
, PAGE_SIZE
, "%02X", version
);
674 static DEVICE_ATTR_RO(version
);
676 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*a
,
679 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
680 const uuid_le
*uuid
= mei_me_cl_uuid(cldev
->me_cl
);
682 return scnprintf(buf
, PAGE_SIZE
, "mei:%s:%pUl:", cldev
->name
, uuid
);
684 static DEVICE_ATTR_RO(modalias
);
686 static struct attribute
*mei_cldev_attrs
[] = {
689 &dev_attr_version
.attr
,
690 &dev_attr_modalias
.attr
,
693 ATTRIBUTE_GROUPS(mei_cldev
);
696 * mei_cl_device_uevent - me client bus uevent handler
699 * @env: uevent kobject
701 * Return: 0 on success -ENOMEM on when add_uevent_var fails
703 static int mei_cl_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
705 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
706 const uuid_le
*uuid
= mei_me_cl_uuid(cldev
->me_cl
);
707 u8 version
= mei_me_cl_ver(cldev
->me_cl
);
709 if (add_uevent_var(env
, "MEI_CL_VERSION=%d", version
))
712 if (add_uevent_var(env
, "MEI_CL_UUID=%pUl", uuid
))
715 if (add_uevent_var(env
, "MEI_CL_NAME=%s", cldev
->name
))
718 if (add_uevent_var(env
, "MODALIAS=mei:%s:%pUl:%02X:",
719 cldev
->name
, uuid
, version
))
725 static struct bus_type mei_cl_bus_type
= {
727 .dev_groups
= mei_cldev_groups
,
728 .match
= mei_cl_device_match
,
729 .probe
= mei_cl_device_probe
,
730 .remove
= mei_cl_device_remove
,
731 .uevent
= mei_cl_device_uevent
,
734 static struct mei_device
*mei_dev_bus_get(struct mei_device
*bus
)
737 get_device(bus
->dev
);
742 static void mei_dev_bus_put(struct mei_device
*bus
)
745 put_device(bus
->dev
);
748 static void mei_cl_bus_dev_release(struct device
*dev
)
750 struct mei_cl_device
*cldev
= to_mei_cl_device(dev
);
755 mei_me_cl_put(cldev
->me_cl
);
756 mei_dev_bus_put(cldev
->bus
);
760 static struct device_type mei_cl_device_type
= {
761 .release
= mei_cl_bus_dev_release
,
765 * mei_cl_bus_set_name - set device name for me client device
767 * @cldev: me client device
769 static inline void mei_cl_bus_set_name(struct mei_cl_device
*cldev
)
771 dev_set_name(&cldev
->dev
, "mei:%s:%pUl:%02X",
773 mei_me_cl_uuid(cldev
->me_cl
),
774 mei_me_cl_ver(cldev
->me_cl
));
778 * mei_cl_bus_dev_alloc - initialize and allocate mei client device
783 * Return: allocated device structur or NULL on allocation failure
785 static struct mei_cl_device
*mei_cl_bus_dev_alloc(struct mei_device
*bus
,
786 struct mei_me_client
*me_cl
)
788 struct mei_cl_device
*cldev
;
790 cldev
= kzalloc(sizeof(struct mei_cl_device
), GFP_KERNEL
);
794 device_initialize(&cldev
->dev
);
795 cldev
->dev
.parent
= bus
->dev
;
796 cldev
->dev
.bus
= &mei_cl_bus_type
;
797 cldev
->dev
.type
= &mei_cl_device_type
;
798 cldev
->bus
= mei_dev_bus_get(bus
);
799 cldev
->me_cl
= mei_me_cl_get(me_cl
);
800 mei_cl_bus_set_name(cldev
);
802 INIT_LIST_HEAD(&cldev
->bus_list
);
808 * mei_cl_dev_setup - setup me client device
809 * run fix up routines and set the device name
812 * @cldev: me client device
814 * Return: true if the device is eligible for enumeration
816 static bool mei_cl_bus_dev_setup(struct mei_device
*bus
,
817 struct mei_cl_device
*cldev
)
820 mei_cl_bus_dev_fixup(cldev
);
822 /* the device name can change during fix up */
824 mei_cl_bus_set_name(cldev
);
826 return cldev
->do_match
== 1;
830 * mei_cl_bus_dev_add - add me client devices
832 * @cldev: me client device
834 * Return: 0 on success; < 0 on failre
836 static int mei_cl_bus_dev_add(struct mei_cl_device
*cldev
)
840 dev_dbg(cldev
->bus
->dev
, "adding %pUL:%02X\n",
841 mei_me_cl_uuid(cldev
->me_cl
),
842 mei_me_cl_ver(cldev
->me_cl
));
843 ret
= device_add(&cldev
->dev
);
851 * mei_cl_bus_dev_stop - stop the driver
853 * @cldev: me client device
855 static void mei_cl_bus_dev_stop(struct mei_cl_device
*cldev
)
858 device_release_driver(&cldev
->dev
);
862 * mei_cl_bus_dev_destroy - destroy me client devices object
864 * @cldev: me client device
866 * Locking: called under "dev->cl_bus_lock" lock
868 static void mei_cl_bus_dev_destroy(struct mei_cl_device
*cldev
)
871 WARN_ON(!mutex_is_locked(&cldev
->bus
->cl_bus_lock
));
873 if (!cldev
->is_added
)
876 device_del(&cldev
->dev
);
878 list_del_init(&cldev
->bus_list
);
881 put_device(&cldev
->dev
);
885 * mei_cl_bus_remove_device - remove a devices form the bus
887 * @cldev: me client device
889 static void mei_cl_bus_remove_device(struct mei_cl_device
*cldev
)
891 mei_cl_bus_dev_stop(cldev
);
892 mei_cl_bus_dev_destroy(cldev
);
896 * mei_cl_bus_remove_devices - remove all devices form the bus
900 void mei_cl_bus_remove_devices(struct mei_device
*bus
)
902 struct mei_cl_device
*cldev
, *next
;
904 mutex_lock(&bus
->cl_bus_lock
);
905 list_for_each_entry_safe(cldev
, next
, &bus
->device_list
, bus_list
)
906 mei_cl_bus_remove_device(cldev
);
907 mutex_unlock(&bus
->cl_bus_lock
);
912 * mei_cl_bus_dev_init - allocate and initializes an mei client devices
918 * Locking: called under "dev->cl_bus_lock" lock
920 static void mei_cl_bus_dev_init(struct mei_device
*bus
,
921 struct mei_me_client
*me_cl
)
923 struct mei_cl_device
*cldev
;
925 WARN_ON(!mutex_is_locked(&bus
->cl_bus_lock
));
927 dev_dbg(bus
->dev
, "initializing %pUl", mei_me_cl_uuid(me_cl
));
929 if (me_cl
->bus_added
)
932 cldev
= mei_cl_bus_dev_alloc(bus
, me_cl
);
936 me_cl
->bus_added
= true;
937 list_add_tail(&cldev
->bus_list
, &bus
->device_list
);
942 * mei_cl_bus_rescan - scan me clients list and add create
943 * devices for eligible clients
947 void mei_cl_bus_rescan(struct mei_device
*bus
)
949 struct mei_cl_device
*cldev
, *n
;
950 struct mei_me_client
*me_cl
;
952 mutex_lock(&bus
->cl_bus_lock
);
954 down_read(&bus
->me_clients_rwsem
);
955 list_for_each_entry(me_cl
, &bus
->me_clients
, list
)
956 mei_cl_bus_dev_init(bus
, me_cl
);
957 up_read(&bus
->me_clients_rwsem
);
959 list_for_each_entry_safe(cldev
, n
, &bus
->device_list
, bus_list
) {
961 if (!mei_me_cl_is_active(cldev
->me_cl
)) {
962 mei_cl_bus_remove_device(cldev
);
969 if (mei_cl_bus_dev_setup(bus
, cldev
))
970 mei_cl_bus_dev_add(cldev
);
972 list_del_init(&cldev
->bus_list
);
973 put_device(&cldev
->dev
);
976 mutex_unlock(&bus
->cl_bus_lock
);
978 dev_dbg(bus
->dev
, "rescan end");
981 void mei_cl_bus_rescan_work(struct work_struct
*work
)
983 struct mei_device
*bus
=
984 container_of(work
, struct mei_device
, bus_rescan_work
);
985 struct mei_me_client
*me_cl
;
987 me_cl
= mei_me_cl_by_uuid(bus
, &mei_amthif_guid
);
989 mei_amthif_host_init(bus
, me_cl
);
990 mei_me_cl_put(me_cl
);
992 mei_cl_bus_rescan(bus
);
995 int __mei_cldev_driver_register(struct mei_cl_driver
*cldrv
,
996 struct module
*owner
)
1000 cldrv
->driver
.name
= cldrv
->name
;
1001 cldrv
->driver
.owner
= owner
;
1002 cldrv
->driver
.bus
= &mei_cl_bus_type
;
1004 err
= driver_register(&cldrv
->driver
);
1008 pr_debug("mei: driver [%s] registered\n", cldrv
->driver
.name
);
1012 EXPORT_SYMBOL_GPL(__mei_cldev_driver_register
);
1014 void mei_cldev_driver_unregister(struct mei_cl_driver
*cldrv
)
1016 driver_unregister(&cldrv
->driver
);
1018 pr_debug("mei: driver [%s] unregistered\n", cldrv
->driver
.name
);
1020 EXPORT_SYMBOL_GPL(mei_cldev_driver_unregister
);
1023 int __init
mei_cl_bus_init(void)
1025 return bus_register(&mei_cl_bus_type
);
1028 void __exit
mei_cl_bus_exit(void)
1030 bus_unregister(&mei_cl_bus_type
);