brintos

brintos / linux-shallow public Read only

0
0
Text · 643 B · 14ea4e1 Raw
31 lines · c
1/* SPDX-License-Identifier: ISC */2/*3 * Copyright (c) 2015,2017 Qualcomm Atheros, Inc.4 */5#ifndef _WOW_H_6#define _WOW_H_7 8struct ath10k_wow {9	u32 max_num_patterns;10	struct completion wakeup_completed;11	struct wiphy_wowlan_support wowlan_support;12};13 14#ifdef CONFIG_PM15 16int ath10k_wow_init(struct ath10k *ar);17int ath10k_wow_op_suspend(struct ieee80211_hw *hw,18			  struct cfg80211_wowlan *wowlan);19int ath10k_wow_op_resume(struct ieee80211_hw *hw);20void ath10k_wow_op_set_wakeup(struct ieee80211_hw *hw, bool enabled);21 22#else23 24static inline int ath10k_wow_init(struct ath10k *ar)25{26	return 0;27}28 29#endif /* CONFIG_PM */30#endif /* _WOW_H_ */31