diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2015-09-10 10:18:02 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-20 19:30:10 -0700 |
commit | baeacd0376975bee0fdf6378e1c24587ab0b6ad4 (patch) | |
tree | aea8038b0b9c40977a0221ed2d9f778e1563da6a /include/linux/mei_cl_bus.h | |
parent | b26864cad1c9f66f4966726ba7bc81d2b9b8f990 (diff) | |
download | lwn-baeacd0376975bee0fdf6378e1c24587ab0b6ad4.tar.gz lwn-baeacd0376975bee0fdf6378e1c24587ab0b6ad4.zip |
mei: bus: export uuid and protocol version to mei_cl bus drivers
Export the uuid and the protocol version of the underlying me client
for me client bus drivers usage.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/mei_cl_bus.h')
-rw-r--r-- | include/linux/mei_cl_bus.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mei_cl_bus.h b/include/linux/mei_cl_bus.h index 0962b2ca628a..9834f832b098 100644 --- a/include/linux/mei_cl_bus.h +++ b/include/linux/mei_cl_bus.h @@ -85,6 +85,9 @@ int mei_cl_register_event_cb(struct mei_cl_device *device, #define MEI_CL_EVENT_TX 1 #define MEI_CL_EVENT_NOTIF 2 +const uuid_le *mei_cldev_uuid(const struct mei_cl_device *cldev); +u8 mei_cldev_ver(const struct mei_cl_device *cldev); + void *mei_cl_get_drvdata(const struct mei_cl_device *device); void mei_cl_set_drvdata(struct mei_cl_device *device, void *data); |