Commit 15265353 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct ap_info_t'.

The "_t" suffix is not needed for structure names in this driver, and is a
reflection of an older typedef system that is no longer in place. Replace
all occurences of 'struct ap_info_t' with 'struct ap_info'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 22b17cfe
...@@ -223,7 +223,7 @@ static u8 read_ie(unsigned char *bp, u8 max, u8 *body) ...@@ -223,7 +223,7 @@ static u8 read_ie(unsigned char *bp, u8 max, u8 *body)
static static
int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info, int get_ap_information(struct ks_wlan_private *priv, struct ap_info *ap_info,
struct local_ap_t *ap) struct local_ap_t *ap)
{ {
unsigned char *bp; unsigned char *bp;
...@@ -771,10 +771,10 @@ static ...@@ -771,10 +771,10 @@ static
void hostif_scan_indication(struct ks_wlan_private *priv) void hostif_scan_indication(struct ks_wlan_private *priv)
{ {
int i; int i;
struct ap_info_t *ap_info; struct ap_info *ap_info;
netdev_dbg(priv->net_dev, "scan_ind_count = %d\n", priv->scan_ind_count); netdev_dbg(priv->net_dev, "scan_ind_count = %d\n", priv->scan_ind_count);
ap_info = (struct ap_info_t *)(priv->rxp); ap_info = (struct ap_info *)(priv->rxp);
if (priv->scan_ind_count) { if (priv->scan_ind_count) {
/* bssid check */ /* bssid check */
...@@ -794,7 +794,7 @@ void hostif_scan_indication(struct ks_wlan_private *priv) ...@@ -794,7 +794,7 @@ void hostif_scan_indication(struct ks_wlan_private *priv)
if (priv->scan_ind_count < LOCAL_APLIST_MAX + 1) { if (priv->scan_ind_count < LOCAL_APLIST_MAX + 1) {
netdev_dbg(priv->net_dev, " scan_ind_count=%d :: aplist.size=%d\n", netdev_dbg(priv->net_dev, " scan_ind_count=%d :: aplist.size=%d\n",
priv->scan_ind_count, priv->aplist.size); priv->scan_ind_count, priv->aplist.size);
get_ap_information(priv, (struct ap_info_t *)(priv->rxp), get_ap_information(priv, (struct ap_info *)(priv->rxp),
&(priv->aplist.ap[priv->scan_ind_count - 1])); &(priv->aplist.ap[priv->scan_ind_count - 1]));
priv->aplist.size = priv->scan_ind_count; priv->aplist.size = priv->scan_ind_count;
} else { } else {
......
...@@ -253,7 +253,7 @@ struct rate_set16 { ...@@ -253,7 +253,7 @@ struct rate_set16 {
u8 rate_pad; u8 rate_pad;
} __packed; } __packed;
struct ap_info_t { struct ap_info {
u8 bssid[6]; /* +00 */ u8 bssid[6]; /* +00 */
u8 rssi; /* +06 */ u8 rssi; /* +06 */
u8 sq; /* +07 */ u8 sq; /* +07 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment