wiphy: Add wiphy_get_id

This commit is contained in:
Denis Kenzior 2020-02-03 17:37:08 -06:00
parent fcdddf2b72
commit 6825721535
2 changed files with 6 additions and 0 deletions

View File

@ -283,6 +283,11 @@ const char *wiphy_get_path(struct wiphy *wiphy)
return path;
}
uint32_t wiphy_get_id(struct wiphy *wiphy)
{
return wiphy->id;
}
uint32_t wiphy_get_supported_bands(struct wiphy *wiphy)
{
if (!wiphy->supported_freqs)

View File

@ -54,6 +54,7 @@ void wiphy_update_from_genl(struct wiphy *wiphy, const char *name,
bool wiphy_constrain_freq_set(const struct wiphy *wiphy,
struct scan_freq_set *set);
uint32_t wiphy_get_id(struct wiphy *wiphy);
const char *wiphy_get_path(struct wiphy *wiphy);
uint32_t wiphy_get_supported_bands(struct wiphy *wiphy);
const struct scan_freq_set *wiphy_get_supported_freqs(