From cristian.ciocaltea at gmail.com Mon Sep 2 10:03:43 2024 From: cristian.ciocaltea at gmail.com (Cristian Ciocaltea) Date: Mon, 2 Sep 2024 20:03:43 +0300 Subject: [PATCH] mfd: atc260x: Convert comma to semicolon In-Reply-To: <20240902085019.4111445-1-nichen@iscas.ac.cn> References: <20240902085019.4111445-1-nichen@iscas.ac.cn> Message-ID: On Mon, Sep 02, 2024 at 04:50:19PM +0800, Chen Ni wrote: > Replace a comma between expression statements by a semicolon. > > Signed-off-by: Chen Ni > --- > drivers/mfd/atc260x-core.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/mfd/atc260x-core.c b/drivers/mfd/atc260x-core.c > index 67473b58b03d..6b6d5f1b9d76 100644 > --- a/drivers/mfd/atc260x-core.c > +++ b/drivers/mfd/atc260x-core.c > @@ -235,8 +235,8 @@ int atc260x_match_device(struct atc260x *atc260x, struct regmap_config *regmap_c > > mutex_init(atc260x->regmap_mutex); > > - regmap_cfg->lock = regmap_lock_mutex, > - regmap_cfg->unlock = regmap_unlock_mutex, > + regmap_cfg->lock = regmap_lock_mutex; > + regmap_cfg->unlock = regmap_unlock_mutex; > regmap_cfg->lock_arg = atc260x->regmap_mutex; Good catch! Reviewed-by: Cristian Ciocaltea