mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 21:54:11 +08:00
mei: bus: export to_mei_cl_device for mei client devices drivers
Export to_mei_cl_device macro, as it is needed also in the mei client drivers. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
21698fd579
commit
32ea33a044
@ -28,7 +28,6 @@
|
|||||||
#include "client.h"
|
#include "client.h"
|
||||||
|
|
||||||
#define to_mei_cl_driver(d) container_of(d, struct mei_cl_driver, driver)
|
#define to_mei_cl_driver(d) container_of(d, struct mei_cl_driver, driver)
|
||||||
#define to_mei_cl_device(d) container_of(d, struct mei_cl_device, dev)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __mei_cl_send - internal client send (write)
|
* __mei_cl_send - internal client send (write)
|
||||||
|
@ -55,6 +55,8 @@ struct mei_cl_device {
|
|||||||
void *priv_data;
|
void *priv_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define to_mei_cl_device(d) container_of(d, struct mei_cl_device, dev)
|
||||||
|
|
||||||
struct mei_cl_driver {
|
struct mei_cl_driver {
|
||||||
struct device_driver driver;
|
struct device_driver driver;
|
||||||
const char *name;
|
const char *name;
|
||||||
|
Loading…
Reference in New Issue
Block a user