diff mbox series

[-next] gpio: vx855: use resource_size

Message ID 20210106131908.584-1-zhengyongjun3@huawei.com
State New
Headers show
Series [-next] gpio: vx855: use resource_size | expand

Commit Message

Zheng Yongjun Jan. 6, 2021, 1:19 p.m. UTC
Use resource_size rather than a verbose computation on
the end and start fields.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
---
 drivers/gpio/gpio-vx855.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Linus Walleij Jan. 7, 2021, 10:20 a.m. UTC | #1
On Wed, Jan 6, 2021 at 2:18 PM Zheng Yongjun <zhengyongjun3@huawei.com> wrote:

> Use resource_size rather than a verbose computation on
> the end and start fields.
>
> Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>

The commit message of these patches is obviously wrong.
Resend all with the right commit message.

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-vx855.c b/drivers/gpio/gpio-vx855.c
index 3bf397b8dfbc..69713fd5485b 100644
--- a/drivers/gpio/gpio-vx855.c
+++ b/drivers/gpio/gpio-vx855.c
@@ -216,7 +216,7 @@  static void vx855gpio_gpio_setup(struct vx855_gpio *vg)
 	c->direction_output = vx855gpio_direction_output;
 	c->get = vx855gpio_get;
 	c->set = vx855gpio_set;
-	c->set_config = vx855gpio_set_config,
+	c->set_config = vx855gpio_set_config;
 	c->dbg_show = NULL;
 	c->base = 0;
 	c->ngpio = NR_VX855_GP;