From: Larry F. <Lar...@lw...> - 2012-05-14 03:13:34
|
The driver produces the following two lines in the log for every channel change: acx.acx1xx_update_tx: Updating TX: enable, channel=11 acx.acx1xx_update_rx: Updating RX: enable, channel=11 Eliminate these lines by changing from L_INIT to L_XFER log level. Signed-off-by: Larry Finger <Lar...@lw...> --- common.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common.c b/common.c index 9e03c5a..5746c38 100644 --- a/common.c +++ b/common.c @@ -3118,7 +3118,7 @@ static int acx1xx_update_tx(acx_device_t *adev) int res; FN_ENTER; - log(L_INIT, "Updating TX: %s, channel=%d\n", + log(L_XFER, "Updating TX: %s, channel=%d\n", adev->tx_enabled ? "enable" : "disable", adev->channel); if (adev->tx_enabled) @@ -3146,7 +3146,7 @@ static int acx1xx_update_rx(acx_device_t *adev) int res; FN_ENTER; - log(L_INIT, "Updating RX: %s, channel=%d\n", + log(L_XFER, "Updating RX: %s, channel=%d\n", adev->rx_enabled ? "enable" : "disable", adev->channel); if (adev->rx_enabled) -- 1.7.7 |