diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/atm/suni.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/atm/suni.c b/drivers/atm/suni.c index da4b91ffa53e..41c56eae4c81 100644 --- a/drivers/atm/suni.c +++ b/drivers/atm/suni.c | |||
@@ -291,8 +291,9 @@ static int suni_ioctl(struct atm_dev *dev,unsigned int cmd,void __user *arg) | |||
291 | 291 | ||
292 | static void poll_los(struct atm_dev *dev) | 292 | static void poll_los(struct atm_dev *dev) |
293 | { | 293 | { |
294 | dev->signal = GET(RSOP_SIS) & SUNI_RSOP_SIS_LOSV ? ATM_PHY_SIG_LOST : | 294 | atm_dev_signal_change(dev, |
295 | ATM_PHY_SIG_FOUND; | 295 | GET(RSOP_SIS) & SUNI_RSOP_SIS_LOSV ? |
296 | ATM_PHY_SIG_LOST : ATM_PHY_SIG_FOUND); | ||
296 | } | 297 | } |
297 | 298 | ||
298 | 299 | ||