Skip to content

Commit

Permalink
wifi: mt76: mt7921: convert acpisar and clc pointers to void
Browse files Browse the repository at this point in the history
Convert acpisar and clc pointers in mt7921_dev structure to void.
This is a preliminary patch to add WiFi7 chipset support

Signed-off-by: Lorenzo Bianconi <[email protected]>
Signed-off-by: Deren Wu <[email protected]>
Signed-off-by: Felix Fietkau <[email protected]>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Jul 26, 2023
1 parent 6db1b49 commit 95a686d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 3 additions & 2 deletions drivers/net/wireless/mediatek/mt76/mt7921/acpi_sar.c
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ int mt7921_init_acpi_sar_power(struct mt7921_phy *phy, bool set_default)

u8 mt7921_acpi_get_flags(struct mt7921_phy *phy)
{
struct mt7921_acpi_sar *acpisar = phy->acpisar;
struct mt7921_asar_fg *fg;
struct {
u8 acpi_idx;
Expand All @@ -319,10 +320,10 @@ u8 mt7921_acpi_get_flags(struct mt7921_phy *phy)
u8 flags = BIT(0);
int i, j;

if (!phy->acpisar)
if (!acpisar)
return 0;

fg = phy->acpisar->fg;
fg = acpisar->fg;
if (!fg)
return flags;

Expand Down
5 changes: 2 additions & 3 deletions drivers/net/wireless/mediatek/mt76/mt7921/mt7921.h
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,9 @@ struct mt7921_phy {
struct sk_buff_head scan_event_list;
struct delayed_work scan_work;
#ifdef CONFIG_ACPI
struct mt7921_acpi_sar *acpisar;
void *acpisar;
#endif

struct mt7921_clc *clc[MT7921_CLC_MAX_NUM];
void *clc[MT7921_CLC_MAX_NUM];

struct work_struct roc_work;
struct timer_list roc_timer;
Expand Down

0 comments on commit 95a686d

Please sign in to comment.