/* * Copyright (c) 2013 Qualcomm Atheros, Inc. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "ath9k.h" static const struct wiphy_wowlan_support ath9k_wowlan_support_legacy = …; static const struct wiphy_wowlan_support ath9k_wowlan_support = …; static u8 ath9k_wow_map_triggers(struct ath_softc *sc, struct cfg80211_wowlan *wowlan) { … } static int ath9k_wow_add_disassoc_deauth_pattern(struct ath_softc *sc) { … } static int ath9k_wow_add_pattern(struct ath_softc *sc, struct cfg80211_wowlan *wowlan) { … } int ath9k_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan) { … } int ath9k_resume(struct ieee80211_hw *hw) { … } void ath9k_set_wakeup(struct ieee80211_hw *hw, bool enabled) { … } void ath9k_init_wow(struct ieee80211_hw *hw) { … } void ath9k_deinit_wow(struct ieee80211_hw *hw) { … }