diff options
author | Geyslan G. Bem <geyslan@gmail.com> | 2016-01-26 04:44:51 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-04 00:44:05 +0300 |
commit | c021170f1da3448d398614b6bc546f3dee256979 (patch) | |
tree | 45242ce11f14174332b3f35ea3a65dc55925b261 /drivers/usb/host/ehci.h | |
parent | 8af0219eea6387248f0d46b47742bb8c83b1b4f3 (diff) | |
download | linux-c021170f1da3448d398614b6bc546f3dee256979.tar.xz |
usb: host: ehci.h: move pointer operator to name side
The pointer operator must be sticked to name.
Caught by checkpatch:
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci.h')
-rw-r--r-- | drivers/usb/host/ehci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h index e587d4529e7a..30bf43750c67 100644 --- a/drivers/usb/host/ehci.h +++ b/drivers/usb/host/ehci.h @@ -741,7 +741,7 @@ ehci_port_speed(struct ehci_hcd *ehci, unsigned int portsc) #endif static inline unsigned int ehci_readl(const struct ehci_hcd *ehci, - __u32 __iomem * regs) + __u32 __iomem *regs) { #ifdef CONFIG_USB_EHCI_BIG_ENDIAN_MMIO return ehci_big_endian_mmio(ehci) ? |