diff options
Diffstat (limited to 'arch/tile/gxio/usb_host.c')
-rw-r--r-- | arch/tile/gxio/usb_host.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/tile/gxio/usb_host.c b/arch/tile/gxio/usb_host.c index 66b002f54ecc..785afad7922e 100644 --- a/arch/tile/gxio/usb_host.c +++ b/arch/tile/gxio/usb_host.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <gxio/kiorpc.h> | 26 | #include <gxio/kiorpc.h> |
27 | #include <gxio/usb_host.h> | 27 | #include <gxio/usb_host.h> |
28 | 28 | ||
29 | int gxio_usb_host_init(gxio_usb_host_context_t * context, int usb_index, | 29 | int gxio_usb_host_init(gxio_usb_host_context_t *context, int usb_index, |
30 | int is_ehci) | 30 | int is_ehci) |
31 | { | 31 | { |
32 | char file[32]; | 32 | char file[32]; |
@@ -63,7 +63,7 @@ int gxio_usb_host_init(gxio_usb_host_context_t * context, int usb_index, | |||
63 | 63 | ||
64 | EXPORT_SYMBOL_GPL(gxio_usb_host_init); | 64 | EXPORT_SYMBOL_GPL(gxio_usb_host_init); |
65 | 65 | ||
66 | int gxio_usb_host_destroy(gxio_usb_host_context_t * context) | 66 | int gxio_usb_host_destroy(gxio_usb_host_context_t *context) |
67 | { | 67 | { |
68 | iounmap((void __force __iomem *)(context->mmio_base)); | 68 | iounmap((void __force __iomem *)(context->mmio_base)); |
69 | hv_dev_close(context->fd); | 69 | hv_dev_close(context->fd); |
@@ -76,14 +76,14 @@ int gxio_usb_host_destroy(gxio_usb_host_context_t * context) | |||
76 | 76 | ||
77 | EXPORT_SYMBOL_GPL(gxio_usb_host_destroy); | 77 | EXPORT_SYMBOL_GPL(gxio_usb_host_destroy); |
78 | 78 | ||
79 | void *gxio_usb_host_get_reg_start(gxio_usb_host_context_t * context) | 79 | void *gxio_usb_host_get_reg_start(gxio_usb_host_context_t *context) |
80 | { | 80 | { |
81 | return context->mmio_base; | 81 | return context->mmio_base; |
82 | } | 82 | } |
83 | 83 | ||
84 | EXPORT_SYMBOL_GPL(gxio_usb_host_get_reg_start); | 84 | EXPORT_SYMBOL_GPL(gxio_usb_host_get_reg_start); |
85 | 85 | ||
86 | size_t gxio_usb_host_get_reg_len(gxio_usb_host_context_t * context) | 86 | size_t gxio_usb_host_get_reg_len(gxio_usb_host_context_t *context) |
87 | { | 87 | { |
88 | return HV_USB_HOST_MMIO_SIZE; | 88 | return HV_USB_HOST_MMIO_SIZE; |
89 | } | 89 | } |