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

staging: unisys: visorbus: visorchipset.c: Remove kernel-doc comments

Removes kernel-doc formatting for comments that precede static functions.
Reported-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarDavid Binder <david.binder@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 b84be59a
...@@ -1004,7 +1004,7 @@ my_device_destroy(struct controlvm_message *inmsg) ...@@ -1004,7 +1004,7 @@ my_device_destroy(struct controlvm_message *inmsg)
#define PARAHOTPLUG_TIMEOUT_MS 2000 #define PARAHOTPLUG_TIMEOUT_MS 2000
/** /*
* parahotplug_next_id() - generate unique int to match an outstanding * parahotplug_next_id() - generate unique int to match an outstanding
* CONTROLVM message with a udev script /sys * CONTROLVM message with a udev script /sys
* response * response
...@@ -1019,7 +1019,7 @@ parahotplug_next_id(void) ...@@ -1019,7 +1019,7 @@ parahotplug_next_id(void)
return atomic_inc_return(&id); return atomic_inc_return(&id);
} }
/** /*
* parahotplug_next_expiration() - returns the time (in jiffies) when a * parahotplug_next_expiration() - returns the time (in jiffies) when a
* CONTROLVM message on the list should expire * CONTROLVM message on the list should expire
* -- PARAHOTPLUG_TIMEOUT_MS in the future * -- PARAHOTPLUG_TIMEOUT_MS in the future
...@@ -1032,7 +1032,7 @@ parahotplug_next_expiration(void) ...@@ -1032,7 +1032,7 @@ parahotplug_next_expiration(void)
return jiffies + msecs_to_jiffies(PARAHOTPLUG_TIMEOUT_MS); return jiffies + msecs_to_jiffies(PARAHOTPLUG_TIMEOUT_MS);
} }
/** /*
* parahotplug_request_create() - create a parahotplug_request, which is * parahotplug_request_create() - create a parahotplug_request, which is
* basically a wrapper for a CONTROLVM_MESSAGE * basically a wrapper for a CONTROLVM_MESSAGE
* that we can stick on a list * that we can stick on a list
...@@ -1056,7 +1056,7 @@ parahotplug_request_create(struct controlvm_message *msg) ...@@ -1056,7 +1056,7 @@ parahotplug_request_create(struct controlvm_message *msg)
return req; return req;
} }
/** /*
* parahotplug_request_destroy() - free a parahotplug_request * parahotplug_request_destroy() - free a parahotplug_request
* @req: the request to deallocate * @req: the request to deallocate
*/ */
...@@ -1069,7 +1069,7 @@ parahotplug_request_destroy(struct parahotplug_request *req) ...@@ -1069,7 +1069,7 @@ parahotplug_request_destroy(struct parahotplug_request *req)
static LIST_HEAD(parahotplug_request_list); static LIST_HEAD(parahotplug_request_list);
static DEFINE_SPINLOCK(parahotplug_request_list_lock); /* lock for above */ static DEFINE_SPINLOCK(parahotplug_request_list_lock); /* lock for above */
/** /*
* parahotplug_request_complete() - mark request as complete * parahotplug_request_complete() - mark request as complete
* @id: the id of the request * @id: the id of the request
* @active: indicates whether the request is assigned to active partition * @active: indicates whether the request is assigned to active partition
...@@ -1113,7 +1113,7 @@ parahotplug_request_complete(int id, u16 active) ...@@ -1113,7 +1113,7 @@ parahotplug_request_complete(int id, u16 active)
return -EINVAL; return -EINVAL;
} }
/** /*
* devicedisabled_store() - disables the hotplug device * devicedisabled_store() - disables the hotplug device
* @dev: sysfs interface variable not utilized in this function * @dev: sysfs interface variable not utilized in this function
* @attr: sysfs interface variable not utilized in this function * @attr: sysfs interface variable not utilized in this function
...@@ -1143,7 +1143,7 @@ static ssize_t devicedisabled_store(struct device *dev, ...@@ -1143,7 +1143,7 @@ static ssize_t devicedisabled_store(struct device *dev,
} }
static DEVICE_ATTR_WO(devicedisabled); static DEVICE_ATTR_WO(devicedisabled);
/** /*
* deviceenabled_store() - enables the hotplug device * deviceenabled_store() - enables the hotplug device
* @dev: sysfs interface variable not utilized in this function * @dev: sysfs interface variable not utilized in this function
* @attr: sysfs interface variable not utilized in this function * @attr: sysfs interface variable not utilized in this function
...@@ -1213,7 +1213,7 @@ static struct platform_device visorchipset_platform_device = { ...@@ -1213,7 +1213,7 @@ static struct platform_device visorchipset_platform_device = {
.dev.release = visorchipset_dev_release, .dev.release = visorchipset_dev_release,
}; };
/** /*
* parahotplug_request_kickoff() - initiate parahotplug request * parahotplug_request_kickoff() - initiate parahotplug request
* @req: the request to initiate * @req: the request to initiate
* *
...@@ -1245,7 +1245,7 @@ parahotplug_request_kickoff(struct parahotplug_request *req) ...@@ -1245,7 +1245,7 @@ parahotplug_request_kickoff(struct parahotplug_request *req)
envp); envp);
} }
/** /*
* parahotplug_process_message() - enables or disables a PCI device by kicking * parahotplug_process_message() - enables or disables a PCI device by kicking
* off a udev script * off a udev script
* @inmsg: the message indicating whether to enable or disable * @inmsg: the message indicating whether to enable or disable
...@@ -1719,7 +1719,7 @@ parser_init_byte_stream(u64 addr, u32 bytes, bool local, bool *retry) ...@@ -1719,7 +1719,7 @@ parser_init_byte_stream(u64 addr, u32 bytes, bool local, bool *retry)
return NULL; return NULL;
} }
/** /*
* handle_command() - process a controlvm message * handle_command() - process a controlvm message
* @inmsg: the message to process * @inmsg: the message to process
* @channel_addr: address of the controlvm channel * @channel_addr: address of the controlvm channel
...@@ -1833,7 +1833,7 @@ handle_command(struct controlvm_message inmsg, u64 channel_addr) ...@@ -1833,7 +1833,7 @@ handle_command(struct controlvm_message inmsg, u64 channel_addr)
return true; return true;
} }
/** /*
* read_controlvm_event() - retreives the next message from the * read_controlvm_event() - retreives the next message from the
* CONTROLVM_QUEUE_EVENT queue in the controlvm * CONTROLVM_QUEUE_EVENT queue in the controlvm
* channel * channel
...@@ -1854,7 +1854,7 @@ read_controlvm_event(struct controlvm_message *msg) ...@@ -1854,7 +1854,7 @@ read_controlvm_event(struct controlvm_message *msg)
return false; return false;
} }
/** /*
* parahotplug_process_list() - remove any request from the list that's been on * parahotplug_process_list() - remove any request from the list that's been on
* there too long and respond with an error * there too long and respond with an error
*/ */
......
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