/* * Copyright (C) 2015 Tobias Klauser * * This file is part of llmnrd. * * llmnrd is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2 of the License. * * llmnrd is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with llmnrd. If not, see . */ #ifndef COMPILER_H #define COMPILER_H #ifdef __GNUC__ # define __noreturn __attribute__((noreturn)) # define __warn_unused_result __attribute__((warn_unused_result)) # ifndef __packed # define __packed __attribute__((packed)) # endif # ifndef __unused # define __unused __attribute__((unused)) # endif # ifndef offsetof # define offsetof(a, b) __builtin_offsetof(a, b) # endif #else # define __noreturn # define __packed # define __unused #endif #ifndef offsetof # define offsetof(type, member) ((size_t) &((type *)0)->member) #endif #ifndef container_of # define container_of(ptr, type, member) ({ \ const typeof(((type *)0)->member) *__mptr = (ptr); \ (type *)((char *)__mptr - offsetof(type, member));}) #endif #endif /* COMPILER_H */ class='sub'>net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeer, Ilan <ilan.peer@intel.com>2016-08-10 13:48:35 +0300
committerLuca Coelho <luciano.coelho@intel.com>2016-08-29 22:29:06 +0300
commita904a08b5fee5317ff0f7b8212aa5d0776795a52 (patch)
tree7e1de9881ef25eb2c05ebc3ebaece6bd0543ddaf
parentff6e58e648ed5f3cc43891767811d5c3c88bbd41 (diff)
iwlwifi: mvm: Advertise support for AP channel width change
The iwlmvm driver supports channel width change in AP mode. Add the proper flag. Signed-off-by: Ilan Peer <ilan.peer@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>