diff options
| author | Bin Liu <b-liu@ti.com> | 2018-05-21 09:42:16 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-05-22 06:03:25 -0400 |
| commit | 2bc2e05f925dda7caaec4b715f4a22cb58e23393 (patch) | |
| tree | 0f218087e8b103e6a2ed0c8ae21cdbc60b365960 /include/linux/usb | |
| parent | 7ad76955c67b705550a7ba7f632b838486753d65 (diff) | |
usb: musb: remove unused members in struct musb_hdrc_config
The following members in struct musb_hdrc_config are not used,
so remove them.
soft_con
utm_16
big_endian
mult_bulk_tx
mult_bulk_rx
high_iso_tx
high_iso_rx
dma
dma_channels
dyn_fifo_size
vendor_ctrl
vendor_stat
vendor_req
dma_req_chan
musb_hdrc_eps_bits
Signed-off-by: Bin Liu <b-liu@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/usb')
| -rw-r--r-- | include/linux/usb/musb.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h index 9eb908a98033..fc6c77918481 100644 --- a/include/linux/usb/musb.h +++ b/include/linux/usb/musb.h | |||
| @@ -67,28 +67,13 @@ struct musb_hdrc_config { | |||
| 67 | /* MUSB configuration-specific details */ | 67 | /* MUSB configuration-specific details */ |
| 68 | unsigned multipoint:1; /* multipoint device */ | 68 | unsigned multipoint:1; /* multipoint device */ |
| 69 | unsigned dyn_fifo:1 __deprecated; /* supports dynamic fifo sizing */ | 69 | unsigned dyn_fifo:1 __deprecated; /* supports dynamic fifo sizing */ |
| 70 | unsigned soft_con:1 __deprecated; /* soft connect required */ | ||
| 71 | unsigned utm_16:1 __deprecated; /* utm data witdh is 16 bits */ | ||
| 72 | unsigned big_endian:1; /* true if CPU uses big-endian */ | ||
| 73 | unsigned mult_bulk_tx:1; /* Tx ep required for multbulk pkts */ | ||
| 74 | unsigned mult_bulk_rx:1; /* Rx ep required for multbulk pkts */ | ||
| 75 | unsigned high_iso_tx:1; /* Tx ep required for HB iso */ | ||
| 76 | unsigned high_iso_rx:1; /* Rx ep required for HD iso */ | ||
| 77 | unsigned dma:1 __deprecated; /* supports DMA */ | ||
| 78 | unsigned vendor_req:1 __deprecated; /* vendor registers required */ | ||
| 79 | 70 | ||
| 80 | /* need to explicitly de-assert the port reset after resume? */ | 71 | /* need to explicitly de-assert the port reset after resume? */ |
| 81 | unsigned host_port_deassert_reset_at_resume:1; | 72 | unsigned host_port_deassert_reset_at_resume:1; |
| 82 | 73 | ||
| 83 | u8 num_eps; /* number of endpoints _with_ ep0 */ | 74 | u8 num_eps; /* number of endpoints _with_ ep0 */ |
| 84 | u8 dma_channels __deprecated; /* number of dma channels */ | ||
| 85 | u8 dyn_fifo_size; /* dynamic size in bytes */ | ||
| 86 | u8 vendor_ctrl __deprecated; /* vendor control reg width */ | ||
| 87 | u8 vendor_stat __deprecated; /* vendor status reg witdh */ | ||
| 88 | u8 dma_req_chan __deprecated; /* bitmask for required dma channels */ | ||
| 89 | u8 ram_bits; /* ram address size */ | 75 | u8 ram_bits; /* ram address size */ |
| 90 | 76 | ||
| 91 | struct musb_hdrc_eps_bits *eps_bits __deprecated; | ||
| 92 | u32 maximum_speed; | 77 | u32 maximum_speed; |
| 93 | }; | 78 | }; |
| 94 | 79 | ||
