Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbfb7ad8 authored by Houston Hoffman's avatar Houston Hoffman Committed by Akash Patel
Browse files

qcacld-3.0: Introduce cdf_suspend_type

Introduce an enum for use by multiple layers to suspend slightly
differently when doing a runtime suspend versus a system suspend.

Change-Id: I753bbe909e53558fe592defdca021331ec6feb88
CRs-Fixed: 935300
parent d2d9bd96
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014-2015 The Linux Foundation. All rights reserved.
 * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
 *
 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
 *
@@ -508,4 +508,14 @@ struct cdf_tso_info_t {
 */
#define CDF_CE_TX_PKT_OFFSET_BIT_M	0x0fff0000

/**
 * enum cdf_suspend_type - type of suspend
 * CDF_SYSTEM_SUSPEND: System suspend triggered wlan suspend
 * CDF_RUNTIME_SUSPEND: Runtime pm inactivity timer triggered wlan suspend
 */
enum cdf_suspend_type {
	CDF_SYSTEM_SUSPEND,
	CDF_RUNTIME_SUSPEND
};

#endif /* if !defined __CDF_TYPES_H */