diff options
author | Xiaofei Tan <tanxiaofei@huawei.com> | 2020-09-17 17:19:20 +0800 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2020-09-24 22:06:16 +0200 |
commit | 61c523b932ae68d90c96ef60ae78d31d88f60f06 (patch) | |
tree | 96acf13a4855d3ff59fdf99d8907a73014970891 | |
parent | fb4f3c92780da18f89d4e05c06b5f697b8b0a05a (diff) | |
download | linux-61c523b932ae68d90c96ef60ae78d31d88f60f06.tar.bz2 |
fbdev: mx3fb: remove unused variable 'irq'
Remove the variable 'irq' that is set but never used.
Signed-off-by: Xiaofei Tan <tanxiaofei@huawei.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1600334360-4214-1-git-send-email-tanxiaofei@huawei.com
-rw-r--r-- | drivers/video/fbdev/mx3fb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/video/fbdev/mx3fb.c b/drivers/video/fbdev/mx3fb.c index 603731a5a72e..894617ddabcb 100644 --- a/drivers/video/fbdev/mx3fb.c +++ b/drivers/video/fbdev/mx3fb.c @@ -1428,7 +1428,6 @@ static int init_fb_chan(struct mx3fb_data *mx3fb, struct idmac_channel *ichan) struct device *dev = mx3fb->dev; struct mx3fb_platform_data *mx3fb_pdata = dev_get_platdata(dev); const char *name = mx3fb_pdata->name; - unsigned int irq; struct fb_info *fbi; struct mx3fb_info *mx3fbi; const struct fb_videomode *mode; @@ -1441,7 +1440,6 @@ static int init_fb_chan(struct mx3fb_data *mx3fb, struct idmac_channel *ichan) } ichan->client = mx3fb; - irq = ichan->eof_irq; if (ichan->dma_chan.chan_id != IDMAC_SDC_0) return -EINVAL; |