Commit 442ab1df authored by Bryan Thompson's avatar Bryan Thompson Committed by Greg Kroah-Hartman

staging: unisys: virtpci: Fix CamelCase write_vbus_chpInfo()

Rename write_vbus_chpInfo() to write_vbus_chp_info() in virtpci.c
Signed-off-by: default avatarBryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e322528d
...@@ -186,7 +186,7 @@ int WAIT_FOR_IO_CHANNEL(struct spar_io_channel_protocol __iomem *chanptr) ...@@ -186,7 +186,7 @@ int WAIT_FOR_IO_CHANNEL(struct spar_io_channel_protocol __iomem *chanptr)
} }
/* Write the contents of <info> to the ULTRA_VBUS_CHANNEL_PROTOCOL.ChpInfo. */ /* Write the contents of <info> to the ULTRA_VBUS_CHANNEL_PROTOCOL.ChpInfo. */
static int write_vbus_chpInfo(struct spar_vbus_channel_protocol *chan, static int write_vbus_chp_info(struct spar_vbus_channel_protocol *chan,
struct ultra_vbus_deviceinfo *info) struct ultra_vbus_deviceinfo *info)
{ {
int off; int off;
...@@ -279,7 +279,7 @@ static int add_vbus(struct add_vbus_guestpart *addparams) ...@@ -279,7 +279,7 @@ static int add_vbus(struct add_vbus_guestpart *addparams)
POSTCODE_LINUX_2(VPCI_CREATE_FAILURE_PC, POSTCODE_SEVERITY_ERR); POSTCODE_LINUX_2(VPCI_CREATE_FAILURE_PC, POSTCODE_SEVERITY_ERR);
return 0; return 0;
} }
write_vbus_chpInfo(vbus->platform_data /* chanptr */ , write_vbus_chp_info(vbus->platform_data /* chanptr */ ,
&chipset_driver_info); &chipset_driver_info);
write_vbus_busInfo(vbus->platform_data /* chanptr */ , write_vbus_busInfo(vbus->platform_data /* chanptr */ ,
&bus_driver_info); &bus_driver_info);
...@@ -802,7 +802,7 @@ static void fix_vbus_devInfo(struct device *dev, int devNo, int devType, ...@@ -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 /* Re-write bus+chipset info, because it is possible that this
* was previously written by our good counterpart, visorbus. * 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); write_vbus_busInfo(pChan, &bus_driver_info);
} }
......
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