diff options
author | Stanislav Yakovlev <stas.yakovlev@gmail.com> | 2012-04-07 04:44:40 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-11 16:24:00 -0400 |
commit | 186b4917451f22dc9c2d128bdca2bc751ef76994 (patch) | |
tree | 14f88e2650ccc56a459b5627147abc9c6b6831e7 /drivers/net/wireless/ipw2x00/libipw.h | |
parent | 5314526b1743e8e8614293db7d86e480b4fe9824 (diff) |
net/wireless: ipw2x00: remove unused libipw_measurement_report struct
and all referenced structs and corresponding enums because the driver
does not use it.
Note: keep libipw_info_element struct since it is still in use.
Signed-off-by: Stanislav Yakovlev <stas.yakovlev@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ipw2x00/libipw.h')
-rw-r--r-- | drivers/net/wireless/ipw2x00/libipw.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/drivers/net/wireless/ipw2x00/libipw.h b/drivers/net/wireless/ipw2x00/libipw.h index 8874588fb929..0b22fb421735 100644 --- a/drivers/net/wireless/ipw2x00/libipw.h +++ b/drivers/net/wireless/ipw2x00/libipw.h | |||
@@ -584,61 +584,6 @@ struct libipw_tim_parameters { | |||
584 | 584 | ||
585 | /*******************************************************/ | 585 | /*******************************************************/ |
586 | 586 | ||
587 | enum { /* libipw_basic_report.map */ | ||
588 | LIBIPW_BASIC_MAP_BSS = (1 << 0), | ||
589 | LIBIPW_BASIC_MAP_OFDM = (1 << 1), | ||
590 | LIBIPW_BASIC_MAP_UNIDENTIFIED = (1 << 2), | ||
591 | LIBIPW_BASIC_MAP_RADAR = (1 << 3), | ||
592 | LIBIPW_BASIC_MAP_UNMEASURED = (1 << 4), | ||
593 | /* Bits 5-7 are reserved */ | ||
594 | |||
595 | }; | ||
596 | struct libipw_basic_report { | ||
597 | u8 channel; | ||
598 | __le64 start_time; | ||
599 | __le16 duration; | ||
600 | u8 map; | ||
601 | } __packed; | ||
602 | |||
603 | enum { /* libipw_measurement_request.mode */ | ||
604 | /* Bit 0 is reserved */ | ||
605 | LIBIPW_MEASUREMENT_ENABLE = (1 << 1), | ||
606 | LIBIPW_MEASUREMENT_REQUEST = (1 << 2), | ||
607 | LIBIPW_MEASUREMENT_REPORT = (1 << 3), | ||
608 | /* Bits 4-7 are reserved */ | ||
609 | }; | ||
610 | |||
611 | enum { | ||
612 | LIBIPW_REPORT_BASIC = 0, /* required */ | ||
613 | LIBIPW_REPORT_CCA = 1, /* optional */ | ||
614 | LIBIPW_REPORT_RPI = 2, /* optional */ | ||
615 | /* 3-255 reserved */ | ||
616 | }; | ||
617 | |||
618 | struct libipw_measurement_params { | ||
619 | u8 channel; | ||
620 | __le64 start_time; | ||
621 | __le16 duration; | ||
622 | } __packed; | ||
623 | |||
624 | struct libipw_measurement_request { | ||
625 | struct libipw_info_element ie; | ||
626 | u8 token; | ||
627 | u8 mode; | ||
628 | u8 type; | ||
629 | struct libipw_measurement_params params[0]; | ||
630 | } __packed; | ||
631 | |||
632 | struct libipw_measurement_report { | ||
633 | struct libipw_info_element ie; | ||
634 | u8 token; | ||
635 | u8 mode; | ||
636 | u8 type; | ||
637 | union { | ||
638 | struct libipw_basic_report basic[0]; | ||
639 | } u; | ||
640 | } __packed; | ||
641 | |||
642 | struct libipw_tpc_report { | 587 | struct libipw_tpc_report { |
643 | u8 transmit_power; | 588 | u8 transmit_power; |
644 | u8 link_margin; | 589 | u8 link_margin; |