Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1723297
| From | Bhumika Goyal <bhumirks@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] usbip: vhci-hcd: make vhci_hc_driver const |
| Date | 2017-08-30 15:00 +0200 |
| Message-ID | <ukaLa-8rd-67@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Make this const as it is not modified anywhere.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
drivers/usb/usbip/vhci_hcd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/usbip/vhci_hcd.c b/drivers/usb/usbip/vhci_hcd.c
index c747623..11b9a22 100644
--- a/drivers/usb/usbip/vhci_hcd.c
+++ b/drivers/usb/usbip/vhci_hcd.c
@@ -1274,7 +1274,7 @@ static int vhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
return 0;
}
-static struct hc_driver vhci_hc_driver = {
+static const struct hc_driver vhci_hc_driver = {
.description = driver_name,
.product_desc = driver_desc,
.hcd_priv_size = sizeof(struct vhci_hcd),
--
1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] usbip: vhci-hcd: make vhci_hc_driver const Bhumika Goyal <bhumirks@gmail.com> - 2017-08-30 15:00 +0200 Re: [PATCH] usbip: vhci-hcd: make vhci_hc_driver const Shuah Khan <shuah@kernel.org> - 2017-08-30 19:30 +0200
csiph-web