diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-01-24 21:09:06 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2019-01-24 22:58:50 +0100 |
commit | 141065012a8c89a48e5c584ef94f6a11b9523c9d (patch) | |
tree | 855e2e717f3401794c4cb632e1e3099487b929e1 /drivers/hid/intel-ish-hid/ishtp/bus.h | |
parent | HID: intel-ish: ipc: handle PIMR before ish_wakeup also clear PISR busy_clear... (diff) | |
download | linux-141065012a8c89a48e5c584ef94f6a11b9523c9d.tar.xz linux-141065012a8c89a48e5c584ef94f6a11b9523c9d.zip |
HID: intel-ish-hid: Switch to use new generic UUID API
There are new types and helpers that are supposed to be used in new code.
As a preparation to get rid of legacy types and API functions do
the conversion here.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/intel-ish-hid/ishtp/bus.h')
-rw-r--r-- | drivers/hid/intel-ish-hid/ishtp/bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/intel-ish-hid/ishtp/bus.h b/drivers/hid/intel-ish-hid/ishtp/bus.h index b8a5bcc82536..babf19ba3ff6 100644 --- a/drivers/hid/intel-ish-hid/ishtp/bus.h +++ b/drivers/hid/intel-ish-hid/ishtp/bus.h @@ -112,8 +112,8 @@ void ishtp_cl_driver_unregister(struct ishtp_cl_driver *driver); int ishtp_register_event_cb(struct ishtp_cl_device *device, void (*read_cb)(struct ishtp_cl_device *)); -int ishtp_fw_cl_by_uuid(struct ishtp_device *dev, const uuid_le *cuuid); +int ishtp_fw_cl_by_uuid(struct ishtp_device *dev, const guid_t *cuuid); struct ishtp_fw_client *ishtp_fw_cl_get_client(struct ishtp_device *dev, - const uuid_le *uuid); + const guid_t *uuid); #endif /* _LINUX_ISHTP_CL_BUS_H */ |