Commit 41c9499b authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Jens Axboe

skd: fix function prototype

Building with W=1 shows a harmless warning for the skd driver:

drivers/block/skd_main.c:2959:1: error: ‘static’ is not at beginning of declaration [-Werror=old-style-declaration]

This changes the prototype to the expected formatting.
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 3bc8492f
...@@ -2945,8 +2945,8 @@ static void skd_completion_worker(struct work_struct *work) ...@@ -2945,8 +2945,8 @@ static void skd_completion_worker(struct work_struct *work)
static void skd_isr_msg_from_dev(struct skd_device *skdev); static void skd_isr_msg_from_dev(struct skd_device *skdev);
irqreturn_t static irqreturn_t
static skd_isr(int irq, void *ptr) skd_isr(int irq, void *ptr)
{ {
struct skd_device *skdev; struct skd_device *skdev;
u32 intstat; u32 intstat;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment