3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-05 19:08:52 +02:00

wiphy: Optimize storage

This commit is contained in:
Denis Kenzior 2015-04-17 12:27:02 -05:00
parent c8fc79c611
commit 431cadb7aa

View File

@ -95,7 +95,7 @@ struct wiphy {
char name[20];
uint32_t feature_flags;
struct l_queue *netdev_list;
bool support_scheduled_scan;
bool support_scheduled_scan:1;
};
static struct l_queue *wiphy_list = NULL;