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

staging: unisys: visorbus: visorbus_main.c: fixed comment formatting issues

Removed comments from the right side of the lines.
Signed-off-by: default avatarSameer Wadgaonkar <sameer.wadgaonkar@unisys.com>
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5787a8a7
/* visorbus_main.c /*
* visorbus_main.c
* *
* Copyright � 2010 - 2015 UNISYS CORPORATION * Copyright � 2010 - 2015 UNISYS CORPORATION
* All rights reserved. * All rights reserved.
...@@ -22,13 +23,14 @@ ...@@ -22,13 +23,14 @@
#define MYDRVNAME "visorbus" #define MYDRVNAME "visorbus"
/* Display string that is guaranteed to be no longer the 99 characters*/ /* Display string that is guaranteed to be no longer the 99 characters */
#define LINESIZE 99 #define LINESIZE 99
#define CURRENT_FILE_PC VISOR_BUS_PC_visorbus_main_c #define CURRENT_FILE_PC VISOR_BUS_PC_visorbus_main_c
#define POLLJIFFIES_NORMALCHANNEL 10 #define POLLJIFFIES_NORMALCHANNEL 10
static bool initialized; /* stores whether bus_registration was successful */ /* stores whether bus_registration was successful */
static bool initialized;
static struct dentry *visorbus_debugfs_dir; static struct dentry *visorbus_debugfs_dir;
/* /*
...@@ -122,7 +124,7 @@ visorbus_match(struct device *xdev, struct device_driver *xdrv) ...@@ -122,7 +124,7 @@ visorbus_match(struct device *xdev, struct device_driver *xdrv)
/* /*
* This describes the TYPE of bus. * This describes the TYPE of bus.
* (Don't confuse this with an INSTANCE of the bus.) * (Don't confuse this with an INSTANCE of the bus.)
*/ */
struct bus_type visorbus_type = { struct bus_type visorbus_type = {
.name = "visorbus", .name = "visorbus",
...@@ -369,8 +371,9 @@ static void ...@@ -369,8 +371,9 @@ static void
vbuschannel_print_devinfo(struct visor_vbus_deviceinfo *devinfo, vbuschannel_print_devinfo(struct visor_vbus_deviceinfo *devinfo,
struct seq_file *seq, int devix) struct seq_file *seq, int devix)
{ {
/* uninitialized vbus device entry */
if (!isprint(devinfo->devtype[0])) if (!isprint(devinfo->devtype[0]))
return; /* uninitialized vbus device entry */ return;
if (devix >= 0) if (devix >= 0)
seq_printf(seq, "[%d]", devix); seq_printf(seq, "[%d]", devix);
...@@ -503,7 +506,7 @@ visordriver_remove_device(struct device *xdev) ...@@ -503,7 +506,7 @@ visordriver_remove_device(struct device *xdev)
return 0; return 0;
} }
/** /*
* visorbus_unregister_visor_driver() - unregisters the provided driver * visorbus_unregister_visor_driver() - unregisters the provided driver
* @drv: the driver to unregister * @drv: the driver to unregister
* *
...@@ -517,7 +520,7 @@ visorbus_unregister_visor_driver(struct visor_driver *drv) ...@@ -517,7 +520,7 @@ visorbus_unregister_visor_driver(struct visor_driver *drv)
} }
EXPORT_SYMBOL_GPL(visorbus_unregister_visor_driver); EXPORT_SYMBOL_GPL(visorbus_unregister_visor_driver);
/** /*
* visorbus_read_channel() - reads from the designated channel into * visorbus_read_channel() - reads from the designated channel into
* the provided buffer * the provided buffer
* @dev: the device whose channel is read from * @dev: the device whose channel is read from
...@@ -538,7 +541,7 @@ visorbus_read_channel(struct visor_device *dev, unsigned long offset, ...@@ -538,7 +541,7 @@ visorbus_read_channel(struct visor_device *dev, unsigned long offset,
} }
EXPORT_SYMBOL_GPL(visorbus_read_channel); EXPORT_SYMBOL_GPL(visorbus_read_channel);
/** /*
* visorbus_write_channel() - writes the provided buffer into the designated * visorbus_write_channel() - writes the provided buffer into the designated
* channel * channel
* @dev: the device whose channel is written to * @dev: the device whose channel is written to
...@@ -559,7 +562,7 @@ visorbus_write_channel(struct visor_device *dev, unsigned long offset, ...@@ -559,7 +562,7 @@ visorbus_write_channel(struct visor_device *dev, unsigned long offset,
} }
EXPORT_SYMBOL_GPL(visorbus_write_channel); EXPORT_SYMBOL_GPL(visorbus_write_channel);
/** /*
* visorbus_enable_channel_interrupts() - enables interrupts on the * visorbus_enable_channel_interrupts() - enables interrupts on the
* designated device * designated device
* @dev: the device on which to enable interrupts * @dev: the device on which to enable interrupts
...@@ -581,7 +584,7 @@ visorbus_enable_channel_interrupts(struct visor_device *dev) ...@@ -581,7 +584,7 @@ visorbus_enable_channel_interrupts(struct visor_device *dev)
} }
EXPORT_SYMBOL_GPL(visorbus_enable_channel_interrupts); EXPORT_SYMBOL_GPL(visorbus_enable_channel_interrupts);
/** /*
* visorbus_disable_channel_interrupts() - disables interrupts on the * visorbus_disable_channel_interrupts() - disables interrupts on the
* designated device * designated device
* @dev: the device on which to disable interrupts * @dev: the device on which to disable interrupts
...@@ -664,7 +667,8 @@ create_visor_device(struct visor_device *dev) ...@@ -664,7 +667,8 @@ create_visor_device(struct visor_device *dev)
goto err_put; goto err_put;
list_add_tail(&dev->list_all, &list_all_device_instances); list_add_tail(&dev->list_all, &list_all_device_instances);
return 0; /* success: reference kept via unmatched get_device() */ /* success: reference kept via unmatched get_device() */
return 0;
err_put: err_put:
put_device(&dev->device); put_device(&dev->device);
...@@ -901,7 +905,7 @@ visordriver_probe_device(struct device *xdev) ...@@ -901,7 +905,7 @@ visordriver_probe_device(struct device *xdev)
return res; return res;
} }
/** /*
* visorbus_register_visor_driver() - registers the provided visor driver * visorbus_register_visor_driver() - registers the provided visor driver
* for handling one or more visor device * for handling one or more visor device
* types (channel_types) * types (channel_types)
...@@ -952,8 +956,9 @@ visordriver_probe_device(struct device *xdev) ...@@ -952,8 +956,9 @@ visordriver_probe_device(struct device *xdev)
*/ */
int visorbus_register_visor_driver(struct visor_driver *drv) int visorbus_register_visor_driver(struct visor_driver *drv)
{ {
/* can't register on a nonexistent bus */
if (!initialized) if (!initialized)
return -ENODEV; /* can't register on a nonexistent bus */ return -ENODEV;
drv->driver.name = drv->name; drv->driver.name = drv->name;
drv->driver.bus = &visorbus_type; drv->driver.bus = &visorbus_type;
...@@ -1195,8 +1200,9 @@ visorchipset_initiate_device_pause_resume(struct visor_device *dev, ...@@ -1195,8 +1200,9 @@ visorchipset_initiate_device_pause_resume(struct visor_device *dev,
dev->pausing = true; dev->pausing = true;
err = drv->pause(dev, pause_state_change_complete); err = drv->pause(dev, pause_state_change_complete);
} else { } else {
/* The vbus_dev_info structure in the channel was been /*
* cleared, make sure it is valid. * The vbus_dev_info structure in the channel was been cleared,
* make sure it is valid.
*/ */
fix_vbus_dev_info(dev); fix_vbus_dev_info(dev);
if (!drv->resume) if (!drv->resume)
...@@ -1209,7 +1215,7 @@ visorchipset_initiate_device_pause_resume(struct visor_device *dev, ...@@ -1209,7 +1215,7 @@ visorchipset_initiate_device_pause_resume(struct visor_device *dev,
return err; return err;
} }
/** /*
* visorchipset_device_pause() - start a pause operation for a visor device * visorchipset_device_pause() - start a pause operation for a visor device
* @dev_info: struct visor_device identifying the device being paused * @dev_info: struct visor_device identifying the device being paused
* *
...@@ -1232,7 +1238,7 @@ visorchipset_device_pause(struct visor_device *dev_info) ...@@ -1232,7 +1238,7 @@ visorchipset_device_pause(struct visor_device *dev_info)
return 0; return 0;
} }
/** /*
* visorchipset_device_resume() - start a resume operation for a visor device * visorchipset_device_resume() - start a resume operation for a visor device
* @dev_info: struct visor_device identifying the device being resumed * @dev_info: struct visor_device identifying the device being resumed
* *
......
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