Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 650b2ef5 authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller
Browse files

mISDN: positive error return should be negative in mode_hfcmulti()



The error return should be negative.  Its only caller that acts upon its
return, handle_bmsg(), transmits the positive error but can also return
negative errors.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: Karsten Keil <isdn@linux-pingi.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3e598177
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2846,7 +2846,7 @@ mode_hfcmulti(struct hfc_multi *hc, int ch, int protocol, int slot_tx,
	int conf;

	if (ch < 0 || ch > 31)
		return EINVAL;
		return -EINVAL;
	oslot_tx = hc->chan[ch].slot_tx;
	oslot_rx = hc->chan[ch].slot_rx;
	conf = hc->chan[ch].conf;