Commit b2d06cad authored by Sameer Wadgaonkar's avatar Sameer Wadgaonkar Committed by Greg Kroah-Hartman

staging: unisys: include: fix comments and spacing issues in visorbus.h

This patch fixes some comments and spacings in the file visorbus.h
to make it more uniform.
Signed-off-by: default avatarSameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fe9f4b53
...@@ -36,13 +36,12 @@ struct visorchipset_state { ...@@ -36,13 +36,12 @@ struct visorchipset_state {
u32 attached:1; u32 attached:1;
u32 configured:1; u32 configured:1;
u32 running:1; u32 running:1;
/* Add new fields above. */ /* Remaining bits in this 32-bit word are reserved. */
/* Remaining bits in this 32-bit word are unused. */
}; };
/** /**
* struct visor_device - A device type for things "plugged" into the visorbus * struct visor_device - A device type for things "plugged" into the visorbus
* bus * bus
* @visorchannel: Points to the channel that the device is * @visorchannel: Points to the channel that the device is
* associated with. * associated with.
* @channel_type_guid: Identifies the channel type to the bus driver. * @channel_type_guid: Identifies the channel type to the bus driver.
...@@ -73,7 +72,6 @@ struct visorchipset_state { ...@@ -73,7 +72,6 @@ struct visorchipset_state {
* same across all visor_devices in the current * same across all visor_devices in the current
* guest. Private use by bus driver only. * guest. Private use by bus driver only.
*/ */
struct visor_device { struct visor_device {
struct visorchannel *visorchannel; struct visorchannel *visorchannel;
guid_t channel_type_guid; guid_t channel_type_guid;
...@@ -104,8 +102,8 @@ typedef void (*visorbus_state_complete_func) (struct visor_device *dev, ...@@ -104,8 +102,8 @@ typedef void (*visorbus_state_complete_func) (struct visor_device *dev,
int status); int status);
/* /*
* This struct describes a specific Supervisor channel, by providing its * This struct describes a specific visor channel, by providing its GUID, name,
* GUID, name, and sizes. * and sizes.
*/ */
struct visor_channeltype_descriptor { struct visor_channeltype_descriptor {
const guid_t guid; const guid_t guid;
...@@ -116,7 +114,7 @@ struct visor_channeltype_descriptor { ...@@ -116,7 +114,7 @@ struct visor_channeltype_descriptor {
/** /**
* struct visor_driver - Information provided by each visor driver when it * struct visor_driver - Information provided by each visor driver when it
* registers with the visorbus driver. * registers with the visorbus driver
* @name: Name of the visor driver. * @name: Name of the visor driver.
* @owner: The module owner. * @owner: The module owner.
* @channel_types: Types of channels handled by this driver, ending with * @channel_types: Types of channels handled by this driver, ending with
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment