diff options
author | Sameer Wadgaonkar <sameer.wadgaonkar@unisys.com> | 2017-09-27 13:14:46 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-09-28 11:20:21 +0200 |
commit | b2d06cad48eb286959524b9930750a27e8428785 (patch) | |
tree | ce374947efd4351aebd12f35a5e61b3902b4fe4c /drivers/staging/unisys | |
parent | fe9f4b53f39ec12b6985ad7ab8cd621ee7463d35 (diff) | |
download | linux-b2d06cad48eb286959524b9930750a27e8428785.tar.bz2 |
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: 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>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r-- | drivers/staging/unisys/include/visorbus.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/staging/unisys/include/visorbus.h b/drivers/staging/unisys/include/visorbus.h index dc1546e84a99..1a0986ba3d24 100644 --- a/drivers/staging/unisys/include/visorbus.h +++ b/drivers/staging/unisys/include/visorbus.h @@ -36,13 +36,12 @@ struct visorchipset_state { u32 attached:1; u32 configured:1; u32 running:1; - /* Add new fields above. */ - /* Remaining bits in this 32-bit word are unused. */ + /* Remaining bits in this 32-bit word are reserved. */ }; /** * struct visor_device - A device type for things "plugged" into the visorbus - * bus + * bus * @visorchannel: Points to the channel that the device is * associated with. * @channel_type_guid: Identifies the channel type to the bus driver. @@ -73,7 +72,6 @@ struct visorchipset_state { * same across all visor_devices in the current * guest. Private use by bus driver only. */ - struct visor_device { struct visorchannel *visorchannel; guid_t channel_type_guid; @@ -104,8 +102,8 @@ typedef void (*visorbus_state_complete_func) (struct visor_device *dev, int status); /* - * This struct describes a specific Supervisor channel, by providing its - * GUID, name, and sizes. + * This struct describes a specific visor channel, by providing its GUID, name, + * and sizes. */ struct visor_channeltype_descriptor { const guid_t guid; @@ -116,7 +114,7 @@ struct visor_channeltype_descriptor { /** * 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. * @owner: The module owner. * @channel_types: Types of channels handled by this driver, ending with |