tnt has uploaded this change for review.

View Change

icE1usb: Report BLUE alarm when receiving AIS

Change-Id: I75ae15d3b8e13ca6b82a20209ee9ca163a729020
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
---
M drivers/dahdi/icE1usb/icE1usb.c
1 file changed, 13 insertions(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/dahdi-linux refs/changes/94/36694/1
diff --git a/drivers/dahdi/icE1usb/icE1usb.c b/drivers/dahdi/icE1usb/icE1usb.c
index 1656b3a..867b4f2 100644
--- a/drivers/dahdi/icE1usb/icE1usb.c
+++ b/drivers/dahdi/icE1usb/icE1usb.c
@@ -591,7 +591,7 @@
memcpy(&ieu->last_err, err, sizeof(ieu->last_err));
}

-#define ALL_RY_ALARMS (DAHDI_ALARM_RED | DAHDI_ALARM_YELLOW | \
+#define ALL_RY_ALARMS (DAHDI_ALARM_RED | DAHDI_ALARM_YELLOW | DAHDI_ALARM_BLUE | \
DAHDI_ALARM_LFA | DAHDI_ALARM_LMFA | DAHDI_ALARM_LOS)

/* interrupt EP completes: Process and resubmit */
@@ -621,6 +621,8 @@
alarms |= DAHDI_ALARM_RED | DAHDI_ALARM_LFA | DAHDI_ALARM_LMFA;
if (err->flags & ICE1USB_ERR_F_RAI)
alarms |= DAHDI_ALARM_YELLOW;
+ if (err->flags & ICE1USB_ERR_F_AIS)
+ alarms |= DAHDI_ALARM_BLUE;
ieu->dahdi.span.alarms &= ~ALL_RY_ALARMS;
ieu->dahdi.span.alarms |= alarms;
dahdi_alarm_notify(&ieu->dahdi.span);

To view, visit change 36694. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: dahdi-linux
Gerrit-Branch: master
Gerrit-Change-Id: I75ae15d3b8e13ca6b82a20209ee9ca163a729020
Gerrit-Change-Number: 36694
Gerrit-PatchSet: 1
Gerrit-Owner: tnt <tnt@246tNt.com>
Gerrit-MessageType: newchange