From 8be0cbe819b892ac1cc3d25783949ecbcd0d4ccc Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Sat, 19 Jan 2013 14:28:19 +0100 Subject: [PATCH] carl9170: fix CONFIG_CARL9170FW_DEBUG && !CONFIG_CARL9170FW_RADIO_FUNC wlantx.c:262:2: error: struct has no member named psm Signed-off-by: Christian Lamparter --- carlfw/src/wlantx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/carlfw/src/wlantx.c b/carlfw/src/wlantx.c index 9f2f51b..8010866 100644 --- a/carlfw/src/wlantx.c +++ b/carlfw/src/wlantx.c @@ -258,9 +258,9 @@ static void __wlan_tx(struct dma_desc *desc) wlan_tx_ampdu(super); -#ifdef CONFIG_CARL9170FW_DEBUG +#if (defined CONFIG_CARL9170FW_DEBUG) && (defined CONFIG_CARL9170FW_RADIO_FUNCTIONS) BUG_ON(fw.phy.psm.state != CARL9170_PSM_WAKE); -#endif /* CONFIG_CARL9170FW_DEBUG */ +#endif /* CONFIG_CARL9170FW_DEBUG && CONFIG_CARL9170FW_RADIO_FUNCTIONS */ /* insert desc into the right queue */ dma_put(&fw.wlan.tx_queue[super->s.queue], desc); -- 2.31.1