From mboxrd@z Thu Jan 1 00:00:00 1970 From: Antonio Alecrim Jr Subject: [PATCH 1/1] isdn: hfcpci_softirq: get func return to suppress compiler warning Date: Fri, 13 Sep 2013 14:44:19 -0300 Message-ID: <1379094259-6237-1-git-send-email-antonio.alecrim@gmail.com> Cc: Antonio Alecrim Jr To: Karsten Keil , Masanari Iida , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org Signed-off-by: Antonio Alecrim Jr --- drivers/isdn/hardware/mISDN/hfcpci.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 7f910c7..5b8df75b 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c @@ -2295,7 +2295,9 @@ _hfcpci_softirq(struct device *dev, void *arg) static void hfcpci_softirq(void *arg) { - (void) driver_for_each_device(&hfc_driver.driver, NULL, arg, + int ret; + + ret = driver_for_each_device(&hfc_driver.driver, NULL, arg, _hfcpci_softirq); /* if next event would be in the past ... */ -- 1.8.3.1