Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752769AbbDSTR3 (ORCPT ); Sun, 19 Apr 2015 15:17:29 -0400 Received: from blu004-omc1s25.hotmail.com ([65.55.116.36]:49225 "EHLO BLU004-OMC1S25.hotmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751764AbbDSTR1 (ORCPT ); Sun, 19 Apr 2015 15:17:27 -0400 X-TMN: [n4QVRooZaTsCIrJNfi6lIHz2+fdN3YYi] X-Originating-Email: [yorick-rommers@hotmail.com] Message-ID: From: Yorick Rommers To: lidza.louina@gmail.com, markh@compro.net, gregkh@linuxfoundation.org CC: driverdev-devel@linuxdriverproject.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Yorick Rommers Subject: [PATCH] Staging: dgnc: fixed code style issue Date: Sun, 19 Apr 2015 21:18:23 +0200 X-Mailer: git-send-email 2.3.5 X-OriginalArrivalTime: 19 Apr 2015 19:17:24.0687 (UTC) FILETIME=[7798CDF0:01D07AD5] MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1394 Lines: 37 A patch for a line being too long (>80) in dgnc_mgmt.c, fixed by making a temporary value for dgnc_Board[brd], and removing an unnecessary typecast. Signed-off-by: Yorick Rommers --- drivers/staging/dgnc/dgnc_mgmt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/dgnc/dgnc_mgmt.c b/drivers/staging/dgnc/dgnc_mgmt.c index b13318a..0e75d37 100644 --- a/drivers/staging/dgnc/dgnc_mgmt.c +++ b/drivers/staging/dgnc/dgnc_mgmt.c @@ -143,12 +143,14 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) di.info_bdnum = brd; spin_lock_irqsave(&dgnc_Board[brd]->bd_lock, flags); + struct dgnc_board *bd = dgnc_Board[brd]; di.info_bdtype = dgnc_Board[brd]->dpatype; di.info_bdstate = dgnc_Board[brd]->dpastatus; di.info_ioport = 0; di.info_physaddr = (ulong) dgnc_Board[brd]->membase; - di.info_physsize = (ulong) dgnc_Board[brd]->membase - dgnc_Board[brd]->membase_end; + di.info_physsize = bd->membase - bd->membase_end; + if (dgnc_Board[brd]->state != BOARD_FAILED) di.info_nports = dgnc_Board[brd]->nasync; else -- 2.3.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/