staging: unisys: fix CamelCase name in visorchipset_register_busdev_client()

Fix CamelCase parameter:

driverInfo => driver_info

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer 2014-10-31 09:57:34 -04:00 committed by Greg Kroah-Hartman
parent 929aa8ae2f
commit 43fce019e9
2 changed files with 5 additions and 5 deletions

View File

@ -253,7 +253,7 @@ void
visorchipset_register_busdev_client(
struct visorchipset_busdev_notifiers *notifiers,
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
* whenever a bus or device appears for which this service partition is

View File

@ -617,7 +617,7 @@ void
visorchipset_register_busdev_client(
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) {
@ -630,9 +630,9 @@ visorchipset_register_busdev_client(
}
if (responders)
*responders = BusDev_Responders;
if (driverInfo)
bus_device_info_init(driverInfo, "chipset(bolts)", "visorchipset",
VERSION, NULL);
if (driver_info)
bus_device_info_init(driver_info, "chipset(bolts)",
"visorchipset", VERSION, NULL);
up(&NotifierLock);
}
EXPORT_SYMBOL_GPL(visorchipset_register_busdev_client);