Commit 43fce019 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix CamelCase name in visorchipset_register_busdev_client()

Fix CamelCase parameter:

driverInfo => driver_info
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 929aa8ae
...@@ -253,7 +253,7 @@ void ...@@ -253,7 +253,7 @@ void
visorchipset_register_busdev_client( visorchipset_register_busdev_client(
struct visorchipset_busdev_notifiers *notifiers, struct visorchipset_busdev_notifiers *notifiers,
struct visorchipset_busdev_responders *responders, struct visorchipset_busdev_responders *responders,
struct ultra_vbus_deviceinfo *driverInfo); struct ultra_vbus_deviceinfo *driver_info);
/** Register functions (in the bus driver) to get called by visorchipset /** Register functions (in the bus driver) to get called by visorchipset
* whenever a bus or device appears for which this service partition is * whenever a bus or device appears for which this service partition is
......
...@@ -617,7 +617,7 @@ void ...@@ -617,7 +617,7 @@ void
visorchipset_register_busdev_client( visorchipset_register_busdev_client(
struct visorchipset_busdev_notifiers *notifiers, struct visorchipset_busdev_notifiers *notifiers,
struct visorchipset_busdev_responders *responders, struct visorchipset_busdev_responders *responders,
struct ultra_vbus_deviceinfo *driverInfo) struct ultra_vbus_deviceinfo *driver_info)
{ {
down(&NotifierLock); down(&NotifierLock);
if (notifiers == NULL) { if (notifiers == NULL) {
...@@ -630,9 +630,9 @@ visorchipset_register_busdev_client( ...@@ -630,9 +630,9 @@ visorchipset_register_busdev_client(
} }
if (responders) if (responders)
*responders = BusDev_Responders; *responders = BusDev_Responders;
if (driverInfo) if (driver_info)
bus_device_info_init(driverInfo, "chipset(bolts)", "visorchipset", bus_device_info_init(driver_info, "chipset(bolts)",
VERSION, NULL); "visorchipset", VERSION, NULL);
up(&NotifierLock); up(&NotifierLock);
} }
EXPORT_SYMBOL_GPL(visorchipset_register_busdev_client); EXPORT_SYMBOL_GPL(visorchipset_register_busdev_client);
......
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