diff options
author | Bjørn Mork <bjorn@mork.no> | 2013-11-01 11:16:47 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-02 02:02:02 -0400 |
commit | 832922362e1308aaef95a43383577d56f51fbc3c (patch) | |
tree | 23801dae1712dad3d00bdc052781cd43c955fc15 /include/linux/usb | |
parent | 1b5287a7abec1177257a988b523c78dab7056b41 (diff) | |
download | blackbird-op-linux-832922362e1308aaef95a43383577d56f51fbc3c.tar.gz blackbird-op-linux-832922362e1308aaef95a43383577d56f51fbc3c.zip |
net: cdc_ncm: remove descriptor pointers
header_desc was completely unused and union_desc was never used
outside cdc_ncm_bind_common.
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 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/usb/cdc_ncm.h b/include/linux/usb/cdc_ncm.h index 89b52a0fe4b9..cad54ad4ad12 100644 --- a/include/linux/usb/cdc_ncm.h +++ b/include/linux/usb/cdc_ncm.h @@ -92,9 +92,7 @@ struct cdc_ncm_ctx { struct tasklet_struct bh; const struct usb_cdc_ncm_desc *func_desc; - const struct usb_cdc_mbim_desc *mbim_desc; - const struct usb_cdc_header_desc *header_desc; - const struct usb_cdc_union_desc *union_desc; + const struct usb_cdc_mbim_desc *mbim_desc; const struct usb_cdc_ether_desc *ether_desc; struct usb_interface *control; |