diff options
| author | David Kershner <david.kershner@unisys.com> | 2017-08-22 13:27:20 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-08-22 15:12:52 -0700 |
| commit | f79e1dfdbcd8e3d6aa2ae1760f2ef272b04e0f4f (patch) | |
| tree | 490b41663d2e07c6800b4a30590ef8061e30a23e | |
| parent | 2c1d9820768f80525067fd51f1ae45d5475c0429 (diff) | |
| download | cachepc-linux-f79e1dfdbcd8e3d6aa2ae1760f2ef272b04e0f4f.tar.gz cachepc-linux-f79e1dfdbcd8e3d6aa2ae1760f2ef272b04e0f4f.zip | |
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>
| -rw-r--r-- | drivers/staging/unisys/include/channel.h | 5 | ||||
| -rw-r--r-- | drivers/staging/unisys/visorbus/visorchipset.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/unisys/include/channel.h b/drivers/staging/unisys/include/channel.h index 8087f19c71c7..2babe93631f3 100644 --- a/drivers/staging/unisys/include/channel.h +++ b/drivers/staging/unisys/include/channel.h @@ -190,9 +190,4 @@ struct signal_queue_header { 0x95, 0xa9, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f) #define VISOR_VHBA_CHANNEL_GUID_STR \ "414815ed-c58c-11da-95a9-00e08161165f" -/* {72120008-4AAB-11DC-8530-444553544200} */ -#define VISOR_SIOVM_GUID \ - GUID_INIT(0x72120008, 0x4AAB, 0x11DC, \ - 0x85, 0x30, 0x44, 0x45, 0x53, 0x54, 0x42, 0x00) - #endif diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c index ced112830316..29475ccf81c1 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c @@ -19,6 +19,11 @@ #include "visorbus.h" #include "visorbus_private.h" +/* {72120008-4AAB-11DC-8530-444553544200} */ +#define VISOR_SIOVM_GUID \ + GUID_INIT(0x72120008, 0x4AAB, 0x11DC, \ + 0x85, 0x30, 0x44, 0x45, 0x53, 0x54, 0x42, 0x00) + static const guid_t visor_vhba_channel_guid = VISOR_VHBA_CHANNEL_GUID; static const guid_t visor_siovm_guid = VISOR_SIOVM_GUID; static const guid_t visor_controlvm_channel_guid = VISOR_CONTROLVM_CHANNEL_GUID; |
