1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 4 * All rights reserved. 5 * 6 * Purpose: Handles 802.11 power management functions 7 * 8 * Author: Lyndon Chen 9 * 10 * Date: July 17, 2002 11 * 12 */ 13 14 #ifndef __POWER_H__ 15 #define __POWER_H__ 16 17 #define C_PWBT 1000 /* micro sec. power up before TBTT */ 18 19 int vnt_disable_power_saving(struct vnt_private *priv); 20 void vnt_enable_power_saving(struct vnt_private *priv, u16 listen_interval); 21 int vnt_next_tbtt_wakeup(struct vnt_private *priv); 22 23 #endif /* __POWER_H__ */ 24