summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/fw-download.c
diff options
context:
space:
mode:
authorGioh Kim <gi-oh.kim@profitbricks.com>2017-02-09 17:30:11 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-02-12 13:26:14 +0100
commit461ab8077d573d4a35529572c774a71e5a898a84 (patch)
treefe3b8d1d49c2d3a6d10ad8721ae4e450454b449b /drivers/staging/greybus/fw-download.c
parent59d409014a91578817b913477592eee4eaf1f6ed (diff)
downloadop-kernel-dev-461ab8077d573d4a35529572c774a71e5a898a84.zip
op-kernel-dev-461ab8077d573d4a35529572c774a71e5a898a84.tar.gz
staging: greybus: fix "line over 80 characters" coding style issues
This patch fixes only obvious lines. There are still more issues. Signed-off-by: Gioh Kim <gi-oh.kim@profitbricks.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/greybus/fw-download.c')
-rw-r--r--drivers/staging/greybus/fw-download.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/greybus/fw-download.c b/drivers/staging/greybus/fw-download.c
index 2d72468..8a1a413 100644
--- a/drivers/staging/greybus/fw-download.c
+++ b/drivers/staging/greybus/fw-download.c
@@ -130,7 +130,8 @@ static void free_firmware(struct fw_download *fw_download,
static void fw_request_timedout(struct work_struct *work)
{
struct delayed_work *dwork = to_delayed_work(work);
- struct fw_request *fw_req = container_of(dwork, struct fw_request, dwork);
+ struct fw_request *fw_req = container_of(dwork,
+ struct fw_request, dwork);
struct fw_download *fw_download = fw_req->fw_download;
dev_err(fw_download->parent,
@@ -239,7 +240,8 @@ static int fw_download_find_firmware(struct gb_operation *op)
tag = (const char *)request->firmware_tag;
/* firmware_tag must be null-terminated */
- if (strnlen(tag, GB_FIRMWARE_TAG_MAX_SIZE) == GB_FIRMWARE_TAG_MAX_SIZE) {
+ if (strnlen(tag, GB_FIRMWARE_TAG_MAX_SIZE) ==
+ GB_FIRMWARE_TAG_MAX_SIZE) {
dev_err(fw_download->parent,
"firmware-tag is not null-terminated\n");
return -EINVAL;
OpenPOWER on IntegriCloud