linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
To: Chris Zankel <chris@zankel.net>, Max Filippov <jcmvbkbc@gmail.com>
Cc: linux-kernel@vger.kernel.org, linux-xtensa@linux-xtensa.org,
	Christoph Hellwig <hch@lst.de>, Jens Axboe <axboe@kernel.dk>,
	Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Subject: [PATCH] xtensa: fix build failure
Date: Sat, 11 Nov 2017 21:27:33 +0000	[thread overview]
Message-ID: <1510435653-6166-1-git-send-email-sudipm.mukherjee@gmail.com> (raw)

The build of xtensa allmodconfig was failing with the error:
arch/xtensa/platforms/iss/simdisk.c:
	In function 'simdisk_make_request':
arch/xtensa/platforms/iss/simdisk.c:120:2:
	error: expected ';' before '}' token

A terminating ';' was missing.

Fixes: 77f55f3809d4 ("block: remove __bio_kmap_atomic")
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
---

The build log of next-20171110 is at:
https://travis-ci.org/sudipm-mukherjee/parport/jobs/300008449

 arch/xtensa/platforms/iss/simdisk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/xtensa/platforms/iss/simdisk.c b/arch/xtensa/platforms/iss/simdisk.c
index eacf1e4..1b64184 100644
--- a/arch/xtensa/platforms/iss/simdisk.c
+++ b/arch/xtensa/platforms/iss/simdisk.c
@@ -116,7 +116,7 @@ static blk_qc_t simdisk_make_request(struct request_queue *q, struct bio *bio)
 		simdisk_transfer(dev, sector, len, buffer,
 				bio_data_dir(bio) == WRITE);
 		sector += len;
-		kunmap_atomic(buffer)
+		kunmap_atomic(buffer);
 	}
 
 	bio_endio(bio);
-- 
1.9.1

             reply	other threads:[~2017-11-11 21:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-11 21:27 Sudip Mukherjee [this message]
2017-11-11 22:52 ` [PATCH] xtensa: fix build failure Jens Axboe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1510435653-6166-1-git-send-email-sudipm.mukherjee@gmail.com \
    --to=sudipm.mukherjee@gmail.com \
    --cc=axboe@kernel.dk \
    --cc=chris@zankel.net \
    --cc=hch@lst.de \
    --cc=jcmvbkbc@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-xtensa@linux-xtensa.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).