[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1353432532-21203-10-git-send-email-johanmeiring@gmail.com>
Date: Tue, 20 Nov 2012 19:28:52 +0200
From: Johan Meiring <johanmeiring@...il.com>
To: gregkh@...uxfoundation.org, a.beregalov@...il.com,
devendra.aaru@...il.com, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Cc: Johan Meiring <johanmeiring@...il.com>
Subject: [PATCH 10/10] staging: cxt1e1: sbecrc.c: fixes 80+ char line length issue
This commit sorts out a single case where a line was longer than
80 characters.
Signed-off-by: Johan Meiring <johanmeiring@...il.com>
---
drivers/staging/cxt1e1/sbecrc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/cxt1e1/sbecrc.c b/drivers/staging/cxt1e1/sbecrc.c
index 87512a5..59dd7e2 100644
--- a/drivers/staging/cxt1e1/sbecrc.c
+++ b/drivers/staging/cxt1e1/sbecrc.c
@@ -101,7 +101,8 @@ sbeCrc(u_int8_t *buffer, /* data buffer to crc */
tbl = &CRCTable;
genCrcTable(tbl);
#else
- tbl = (u_int32_t *) OS_kmalloc(CRC_TABLE_ENTRIES * sizeof(u_int32_t));
+ tbl = (u_int32_t *) OS_kmalloc(CRC_TABLE_ENTRIES
+ * sizeof(u_int32_t));
if (tbl == 0) {
*result = 0; /* dummy up return value due to malloc
* failure */
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists