mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-10 15:10:38 +00:00
misc/mei/hdcp: Use correct macros to initialize uuid_le
GUID_INIT() is for internal guid_t type and shouldn't be used for the uuid_le. I.o.w. relying on the implementation details is layering violation. Use correct macros to initialize uuid_le. Fixes: 64e9bbdd9588 ("misc/mei/hdcp: Client driver for HDCP application") Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Tomas Winkler <tomas.winkler@intel.com> Link: https://lore.kernel.org/r/20221228160500.21220-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
503b676dde
commit
512ba04d82
@ -859,8 +859,8 @@ static void mei_hdcp_remove(struct mei_cl_device *cldev)
|
||||
dev_warn(&cldev->dev, "mei_cldev_disable() failed\n");
|
||||
}
|
||||
|
||||
#define MEI_UUID_HDCP GUID_INIT(0xB638AB7E, 0x94E2, 0x4EA2, 0xA5, \
|
||||
0x52, 0xD1, 0xC5, 0x4B, 0x62, 0x7F, 0x04)
|
||||
#define MEI_UUID_HDCP UUID_LE(0xB638AB7E, 0x94E2, 0x4EA2, 0xA5, \
|
||||
0x52, 0xD1, 0xC5, 0x4B, 0x62, 0x7F, 0x04)
|
||||
|
||||
static const struct mei_cl_device_id mei_hdcp_tbl[] = {
|
||||
{ .uuid = MEI_UUID_HDCP, .version = MEI_CL_VERSION_ANY },
|
||||
|
Loading…
x
Reference in New Issue
Block a user