nl80211: allow phy names that don't start with 'phy'
This is needed for dealing with wiphy renaming Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
b3e08c8b5a
commit
1f695d9c7f
1 changed files with 0 additions and 6 deletions
|
@ -245,9 +245,6 @@ static const char *nl80211_phy_path_str(const char *phyname)
|
||||||
int seq = 0;
|
int seq = 0;
|
||||||
DIR *d;
|
DIR *d;
|
||||||
|
|
||||||
if (strncmp(phyname, "phy", 3) != 0)
|
|
||||||
return NULL;
|
|
||||||
|
|
||||||
phy_id = atoi(phyname + 3);
|
phy_id = atoi(phyname + 3);
|
||||||
buf_len = snprintf(buf, sizeof(buf), "/sys/class/ieee80211/%s/device", phyname);
|
buf_len = snprintf(buf, sizeof(buf), "/sys/class/ieee80211/%s/device", phyname);
|
||||||
link = realpath(buf, path);
|
link = realpath(buf, path);
|
||||||
|
@ -3526,9 +3523,6 @@ static int nl80211_lookup_phyname(const char *section, char *buf)
|
||||||
|
|
||||||
static int nl80211_phy_path(const char *phyname, const char **path)
|
static int nl80211_phy_path(const char *phyname, const char **path)
|
||||||
{
|
{
|
||||||
if (strncmp(phyname, "phy", 3) != 0)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
if (strchr(phyname, '/'))
|
if (strchr(phyname, '/'))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue