mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 06:30:20 -04:00
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: Quytelda Kahja <quytelda@tamalin.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
22b17cfe25
commit
15265353a6
@@ -223,7 +223,7 @@ static u8 read_ie(unsigned char *bp, u8 max, u8 *body)
|
||||
|
||||
|
||||
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)
|
||||
{
|
||||
unsigned char *bp;
|
||||
@@ -771,10 +771,10 @@ static
|
||||
void hostif_scan_indication(struct ks_wlan_private *priv)
|
||||
{
|
||||
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);
|
||||
ap_info = (struct ap_info_t *)(priv->rxp);
|
||||
ap_info = (struct ap_info *)(priv->rxp);
|
||||
|
||||
if (priv->scan_ind_count) {
|
||||
/* bssid check */
|
||||
@@ -794,7 +794,7 @@ void hostif_scan_indication(struct ks_wlan_private *priv)
|
||||
if (priv->scan_ind_count < LOCAL_APLIST_MAX + 1) {
|
||||
netdev_dbg(priv->net_dev, " scan_ind_count=%d :: aplist.size=%d\n",
|
||||
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.size = priv->scan_ind_count;
|
||||
} else {
|
||||
|
||||
@@ -253,7 +253,7 @@ struct rate_set16 {
|
||||
u8 rate_pad;
|
||||
} __packed;
|
||||
|
||||
struct ap_info_t {
|
||||
struct ap_info {
|
||||
u8 bssid[6]; /* +00 */
|
||||
u8 rssi; /* +06 */
|
||||
u8 sq; /* +07 */
|
||||
|
||||
Reference in New Issue
Block a user