Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: unisys: Move SIOVM guid to visorbus

The SIOVM guid is only used by visorchipset. So define it there instead
of a global header file.

Reviewed-by: Sameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

David Kershner and committed by
Greg Kroah-Hartman
f79e1dfd 2c1d9820

+5 -5
-5
drivers/staging/unisys/include/channel.h
··· 190 190 0x95, 0xa9, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f) 191 191 #define VISOR_VHBA_CHANNEL_GUID_STR \ 192 192 "414815ed-c58c-11da-95a9-00e08161165f" 193 - /* {72120008-4AAB-11DC-8530-444553544200} */ 194 - #define VISOR_SIOVM_GUID \ 195 - GUID_INIT(0x72120008, 0x4AAB, 0x11DC, \ 196 - 0x85, 0x30, 0x44, 0x45, 0x53, 0x54, 0x42, 0x00) 197 - 198 193 #endif
+5
drivers/staging/unisys/visorbus/visorchipset.c
··· 19 19 #include "visorbus.h" 20 20 #include "visorbus_private.h" 21 21 22 + /* {72120008-4AAB-11DC-8530-444553544200} */ 23 + #define VISOR_SIOVM_GUID \ 24 + GUID_INIT(0x72120008, 0x4AAB, 0x11DC, \ 25 + 0x85, 0x30, 0x44, 0x45, 0x53, 0x54, 0x42, 0x00) 26 + 22 27 static const guid_t visor_vhba_channel_guid = VISOR_VHBA_CHANNEL_GUID; 23 28 static const guid_t visor_siovm_guid = VISOR_SIOVM_GUID; 24 29 static const guid_t visor_controlvm_channel_guid = VISOR_CONTROLVM_CHANNEL_GUID;