diff options
author | Bjørn Mork <bjorn@mork.no> | 2013-11-01 06:16:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-02 02:02:04 -0400 |
commit | 6dd13e83ce37f716e36085cb8b58779da1e98f6d (patch) | |
tree | cd3a967ea99f9f473e9b3696c7ffc1a530dcf7d9 /include/linux/usb | |
parent | 986e10d6718704fa96c8e59921727358917161ec (diff) |
net: cdc_ncm: drop "extern" from header declarations
Cc: Alexey Orishko <alexey.orishko@gmail.com>
Signed-off-by: Bjørn Mork <bjorn@mork.no>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/cdc_ncm.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/usb/cdc_ncm.h b/include/linux/usb/cdc_ncm.h index cad54ad4ad12..2300f7492927 100644 --- a/include/linux/usb/cdc_ncm.h +++ b/include/linux/usb/cdc_ncm.h | |||
@@ -119,11 +119,11 @@ struct cdc_ncm_ctx { | |||
119 | u16 connected; | 119 | u16 connected; |
120 | }; | 120 | }; |
121 | 121 | ||
122 | extern u8 cdc_ncm_select_altsetting(struct usbnet *dev, struct usb_interface *intf); | 122 | u8 cdc_ncm_select_altsetting(struct usbnet *dev, struct usb_interface *intf); |
123 | extern int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting); | 123 | int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting); |
124 | extern void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf); | 124 | void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf); |
125 | extern struct sk_buff *cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign); | 125 | struct sk_buff *cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign); |
126 | extern int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in); | 126 | int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in); |
127 | extern int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset); | 127 | int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset); |
128 | 128 | ||
129 | #endif /* __LINUX_USB_CDC_NCM_H */ | 129 | #endif /* __LINUX_USB_CDC_NCM_H */ |