staging: unisys: virtpci: Fix CamelCase write_vbus_chpInfo()

Rename write_vbus_chpInfo() to write_vbus_chp_info() in virtpci.c

Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bryan Thompson 2014-11-03 14:21:04 -05:00 committed by Greg Kroah-Hartman
parent e322528dca
commit 442ab1dfcf

View File

@ -186,8 +186,8 @@ int WAIT_FOR_IO_CHANNEL(struct spar_io_channel_protocol __iomem *chanptr)
}
/* Write the contents of <info> to the ULTRA_VBUS_CHANNEL_PROTOCOL.ChpInfo. */
static int write_vbus_chpInfo(struct spar_vbus_channel_protocol *chan,
struct ultra_vbus_deviceinfo *info)
static int write_vbus_chp_info(struct spar_vbus_channel_protocol *chan,
struct ultra_vbus_deviceinfo *info)
{
int off;
@ -279,8 +279,8 @@ static int add_vbus(struct add_vbus_guestpart *addparams)
POSTCODE_LINUX_2(VPCI_CREATE_FAILURE_PC, POSTCODE_SEVERITY_ERR);
return 0;
}
write_vbus_chpInfo(vbus->platform_data /* chanptr */ ,
&chipset_driver_info);
write_vbus_chp_info(vbus->platform_data /* chanptr */ ,
&chipset_driver_info);
write_vbus_busInfo(vbus->platform_data /* chanptr */ ,
&bus_driver_info);
LOGINF("Added vbus %d; device %s created successfully\n",
@ -802,7 +802,7 @@ static void fix_vbus_devInfo(struct device *dev, int devNo, int devType,
/* Re-write bus+chipset info, because it is possible that this
* was previously written by our good counterpart, visorbus.
*/
write_vbus_chpInfo(pChan, &chipset_driver_info);
write_vbus_chp_info(pChan, &chipset_driver_info);
write_vbus_busInfo(pChan, &bus_driver_info);
}