staging: unisys: virtpci: Fix CamelCase in delete_vbus_device()
Rename pDev to dev in delete_vbus_device() Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
57fd919991
commit
865cde938e
@ -430,9 +430,9 @@ static int
|
||||
delete_vbus_device(struct device *vbus, void *data)
|
||||
{
|
||||
int checkforroot = (data != NULL);
|
||||
struct device *pDev = &virtpci_rootbus_device;
|
||||
struct device *dev = &virtpci_rootbus_device;
|
||||
|
||||
if ((checkforroot) && match_busid(vbus, (void *)BUS_ID(pDev))) {
|
||||
if ((checkforroot) && match_busid(vbus, (void *)BUS_ID(dev))) {
|
||||
/* skip it - don't delete root bus */
|
||||
LOGINF("skipping root bus\n");
|
||||
return 0; /* pretend no error */
|
||||
|
Loading…
Reference in New Issue
Block a user