mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-24 01:54:03 -04:00
All communication on individual GUIDs should occur in separate drivers. Allowing a driver to communicate with the bus to another GUID is just a hack that discourages drivers to adopt the bus model. The information found from the WMI descriptor driver is now exported for use by other drivers. Signed-off-by: Mario Limonciello <mario.limonciello@dell.com> Reviewed-by: Edward O'Callaghan <quasisec@google.com> Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
21 lines
524 B
C
21 lines
524 B
C
/*
|
|
* Dell WMI descriptor driver
|
|
*
|
|
* Copyright (c) 2017 Dell Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef _DELL_WMI_DESCRIPTOR_H_
|
|
#define _DELL_WMI_DESCRIPTOR_H_
|
|
|
|
#include <linux/wmi.h>
|
|
|
|
#define DELL_WMI_DESCRIPTOR_GUID "8D9DDCBC-A997-11DA-B012-B622A1EF5492"
|
|
|
|
bool dell_wmi_get_interface_version(u32 *version);
|
|
bool dell_wmi_get_size(u32 *size);
|
|
|
|
#endif
|