aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-10-31 09:57:35 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-03 16:02:46 -0800
commit1e7a59c1464eb0bb2bc6940ba963845fa246fa61 (patch)
tree7e9a2cbed031c576f3caeeb8e6d9e59b88021113 /drivers
parentstaging: unisys: fix CamelCase name in visorchipset_register_busdev_client() (diff)
downloadlinux-dev-1e7a59c1464eb0bb2bc6940ba963845fa246fa61.tar.xz
linux-dev-1e7a59c1464eb0bb2bc6940ba963845fa246fa61.zip
staging: unisys: fix CamelCase name in visorchipset_register_busdev_server()
Fix CamelCase name: driverInfo => driver_info Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/unisys/visorchipset/visorchipset.h2
-rw-r--r--drivers/staging/unisys/visorchipset/visorchipset_main.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/unisys/visorchipset/visorchipset.h b/drivers/staging/unisys/visorchipset/visorchipset.h
index e8687ad9dda5..4bafcf2ecd1d 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset.h
+++ b/drivers/staging/unisys/visorchipset/visorchipset.h
@@ -265,7 +265,7 @@ void
visorchipset_register_busdev_server(
struct visorchipset_busdev_notifiers *notifiers,
struct visorchipset_busdev_responders *responders,
- struct ultra_vbus_deviceinfo *driverInfo);
+ struct ultra_vbus_deviceinfo *driver_info);
typedef void (*SPARREPORTEVENT_COMPLETE_FUNC) (struct controlvm_message *msg,
int status);
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c
index 0dfd8f4b78bb..95545b9e2d50 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset_main.c
+++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c
@@ -592,7 +592,7 @@ void
visorchipset_register_busdev_server(
struct visorchipset_busdev_notifiers *notifiers,
struct visorchipset_busdev_responders *responders,
- struct ultra_vbus_deviceinfo *driverInfo)
+ struct ultra_vbus_deviceinfo *driver_info)
{
down(&NotifierLock);
if (notifiers == NULL) {
@@ -605,8 +605,8 @@ visorchipset_register_busdev_server(
}
if (responders)
*responders = BusDev_Responders;
- if (driverInfo)
- bus_device_info_init(driverInfo, "chipset", "visorchipset",
+ if (driver_info)
+ bus_device_info_init(driver_info, "chipset", "visorchipset",
VERSION, NULL);
up(&NotifierLock);