Commit eafc6a94 authored by David Binder's avatar David Binder Committed by Greg Kroah-Hartman

staging: unisys: visorbus: rectify kerneldoc comment for struct

Fixes the kerneldoc comment for struct visor_device - the struct members
were not listed with the appropriate @ prefix.
Signed-off-by: default avatarDavid Binder <david.binder@unisys.com>
Acked-By: default avatarNeil Horman <nhorman@tuxdriver.com>
Reviewed-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e9b18f3b
...@@ -121,33 +121,33 @@ struct visor_driver { ...@@ -121,33 +121,33 @@ struct visor_driver {
/** /**
* 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.
* device: Device struct meant for use by the bus driver * @device: Device struct meant for use by the bus driver
* only. * only.
* list_all: Used by the bus driver to enumerate devices. * @list_all: Used by the bus driver to enumerate devices.
* timer: Timer fired periodically to do interrupt-type * @timer: Timer fired periodically to do interrupt-type
* activity. * activity.
* being_removed: Indicates that the device is being removed from * @being_removed: Indicates that the device is being removed from
* the bus. Private bus driver use only. * the bus. Private bus driver use only.
* visordriver_callback_lock: Used by the bus driver to lock when handling * @visordriver_callback_lock: Used by the bus driver to lock when handling
* channel events. * channel events.
* pausing: Indicates that a change towards a paused state. * @pausing: Indicates that a change towards a paused state.
* is in progress. Only modified by the bus driver. * is in progress. Only modified by the bus driver.
* resuming: Indicates that a change towards a running state * @resuming: Indicates that a change towards a running state
* is in progress. Only modified by the bus driver. * is in progress. Only modified by the bus driver.
* chipset_bus_no: Private field used by the bus driver. * @chipset_bus_no: Private field used by the bus driver.
* chipset_dev_no: Private field used the bus driver. * @chipset_dev_no: Private field used the bus driver.
* state: Used to indicate the current state of the * @state: Used to indicate the current state of the
* device. * device.
* inst: Unique GUID for this instance of the device. * @inst: Unique GUID for this instance of the device.
* name: Name of the device. * @name: Name of the device.
* pending_msg_hdr: For private use by bus driver to respond to * @pending_msg_hdr: For private use by bus driver to respond to
* hypervisor requests. * hypervisor requests.
* vbus_hdr_info: A pointer to header info. Private use by bus * @vbus_hdr_info: A pointer to header info. Private use by bus
* driver. * driver.
* partition_uuid: Indicates client partion id. This should be the * @partition_uuid: Indicates client partion id. This should be the
* 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.
*/ */
......
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