aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Van Assche <[email protected]>2017-08-17 13:13:10 -0700
committerJens Axboe <[email protected]>2017-08-18 08:45:29 -0600
commit1cd3c1aba3376b0283ddf19b253f510055d551fe (patch)
tree6fa4d09a26bbb06bf556291ea8025b9c2b8477f6
parent53e617e3dd5f97647f8ed6156267ca9c50c281bd (diff)
skd: Make the skd_isr() code more brief
This patch does not change any functionality. Signed-off-by: Bart Van Assche <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: Hannes Reinecke <[email protected]> Cc: Johannes Thumshirn <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r--drivers/block/skd_main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c
index e2d205b58fe2..7d5048d95037 100644
--- a/drivers/block/skd_main.c
+++ b/drivers/block/skd_main.c
@@ -2830,14 +2830,13 @@ static void skd_isr_msg_from_dev(struct skd_device *skdev);
static irqreturn_t
skd_isr(int irq, void *ptr)
{
- struct skd_device *skdev;
+ struct skd_device *skdev = ptr;
u32 intstat;
u32 ack;
int rc = 0;
int deferred = 0;
int flush_enqueued = 0;
- skdev = (struct skd_device *)ptr;
spin_lock(&skdev->lock);
for (;; ) {