wifi: ieee80211: correctly mark FTM frames non-bufferable
[carl9170fw.git] / carlfw / include / wol.h
index 8b131ac8255babc91813c2994c7b1e66b0210794..20f0af6d7026d9a487ddbcfa108b8e40b55f5486 100644 (file)
@@ -19,8 +19,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef __CARL9170FW_WOL_H
@@ -38,24 +37,28 @@ struct ieee80211_hdr;
 
 void wol_prepare(void);
 void wol_janitor(void);
-void wol_rx(const unsigned int rx_filter __unused, const struct ieee80211_hdr *hdr __unused, const unsigned int len __unused);
+void wol_rx(const unsigned int rx_filter __unused,
+           const struct ieee80211_hdr *hdr __unused,
+           const unsigned int len __unused);
 void wol_cmd(const struct carl9170_wol_cmd *cmd);
 
 #else
 
-inline static void wol_cmd(const struct carl9170_wol_cmd *cmd __unused)
+static inline void wol_cmd(const struct carl9170_wol_cmd *cmd __unused)
 {
 }
 
-inline static void wol_prepare(void)
+static inline void wol_prepare(void)
 {
 }
 
-inline static void wol_janitor(void)
+static inline void wol_janitor(void)
 {
 }
 
-inline static void wol_rx(const unsigned int rx_filter __unused, const struct ieee80211_hdr *hdr __unused, const unsigned int len __unused)
+static inline void wol_rx(const unsigned int rx_filter __unused,
+                         const struct ieee80211_hdr *hdr __unused,
+                         const unsigned int len __unused)
 {
 }
 #endif /* CONFIG_CARL9170FW_WOL */