From: Daeseok Youn Date: Mon, 9 May 2016 02:47:34 +0000 (+0900) Subject: staging: dgnc: Need to check for NULL of ch X-Git-Tag: v4.7-rc1~90^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bddb1531086ff40e8eb81dd1e30b56407a7a4279;p=karo-tx-linux.git staging: dgnc: Need to check for NULL of ch the "ch" from brd structure could be NULL, it need to check for NULL. Signed-off-by: Daeseok Youn Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c index 9eae1a695980..ba57e9546f72 100644 --- a/drivers/staging/dgnc/dgnc_neo.c +++ b/drivers/staging/dgnc/dgnc_neo.c @@ -380,7 +380,7 @@ static inline void neo_parse_isr(struct dgnc_board *brd, uint port) unsigned long flags; ch = brd->channels[port]; - if (ch->magic != DGNC_CHANNEL_MAGIC) + if (!ch || ch->magic != DGNC_CHANNEL_MAGIC) return; /* Here we try to figure out what caused the interrupt to happen */