USB: OHCI: remove space before open square bracket '['

This patch removes following checkpatch.pl error in usb/host/ohci-pci.c file.
ERROR: space prohibited before open square bracket '['

Signed-off-by: Naveen Kumar Parna <parna.naveenkumar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Naveen Kumar Parna 2019-05-16 20:49:23 +05:30 committed by Greg Kroah-Hartman
parent 01d4071486
commit 4e4feeec4e
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ static const struct ohci_driver_overrides pci_overrides __initconst = {
.reset = ohci_pci_reset, .reset = ohci_pci_reset,
}; };
static const struct pci_device_id pci_ids [] = { { static const struct pci_device_id pci_ids[] = { {
/* handle any USB OHCI controller */ /* handle any USB OHCI controller */
PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_OHCI, ~0), PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_OHCI, ~0),
.driver_data = (unsigned long) &ohci_pci_hc_driver, .driver_data = (unsigned long) &ohci_pci_hc_driver,