Commit cc7b86c1 authored by Karl Hiramoto's avatar Karl Hiramoto Committed by David S. Miller

usb/atm/ueagle-atm.c: call atm_dev_signal_change() when signal changes.

Propagate signal changes to upper atm layer.
Signed-off-by: default avatarKarl Hiramoto <karl@hiramoto.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 23f89f04
...@@ -575,6 +575,13 @@ MODULE_PARM_DESC(annex, ...@@ -575,6 +575,13 @@ MODULE_PARM_DESC(annex,
sc->usbatm->atm_dev->type = val; \ sc->usbatm->atm_dev->type = val; \
} while (0) } while (0)
#define UPDATE_ATM_SIGNAL(val) \
do { \
if (sc->usbatm->atm_dev) \
atm_dev_signal_change(sc->usbatm->atm_dev, val); \
} while (0)
/* Firmware loading */ /* Firmware loading */
#define LOAD_INTERNAL 0xA0 #define LOAD_INTERNAL 0xA0
#define F8051_USBCS 0x7f92 #define F8051_USBCS 0x7f92
...@@ -1359,7 +1366,7 @@ static int uea_stat_e1(struct uea_softc *sc) ...@@ -1359,7 +1366,7 @@ static int uea_stat_e1(struct uea_softc *sc)
/* always update it as atm layer could not be init when we switch to /* always update it as atm layer could not be init when we switch to
* operational state * operational state
*/ */
UPDATE_ATM_STAT(signal, ATM_PHY_SIG_FOUND); UPDATE_ATM_SIGNAL(ATM_PHY_SIG_FOUND);
/* wake up processes waiting for synchronization */ /* wake up processes waiting for synchronization */
wake_up(&sc->sync_q); wake_up(&sc->sync_q);
...@@ -1498,7 +1505,7 @@ static int uea_stat_e4(struct uea_softc *sc) ...@@ -1498,7 +1505,7 @@ static int uea_stat_e4(struct uea_softc *sc)
/* always update it as atm layer could not be init when we switch to /* always update it as atm layer could not be init when we switch to
* operational state * operational state
*/ */
UPDATE_ATM_STAT(signal, ATM_PHY_SIG_FOUND); UPDATE_ATM_SIGNAL(ATM_PHY_SIG_FOUND);
/* wake up processes waiting for synchronization */ /* wake up processes waiting for synchronization */
wake_up(&sc->sync_q); wake_up(&sc->sync_q);
...@@ -1825,7 +1832,7 @@ static int uea_start_reset(struct uea_softc *sc) ...@@ -1825,7 +1832,7 @@ static int uea_start_reset(struct uea_softc *sc)
* So we will failed to wait Ready CMV. * So we will failed to wait Ready CMV.
*/ */
sc->cmv_ack = 0; sc->cmv_ack = 0;
UPDATE_ATM_STAT(signal, ATM_PHY_SIG_LOST); UPDATE_ATM_SIGNAL(ATM_PHY_SIG_LOST);
/* reset statistics */ /* reset statistics */
memset(&sc->stats, 0, sizeof(struct uea_stats)); memset(&sc->stats, 0, sizeof(struct uea_stats));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment