[PATCH v1 10/11] mfd: intel_soc_pmic_bxtwc: Drop unneeded casting

From: Andy Shevchenko
Date: Thu Jun 16 2022 - 13:00:03 EST


The casting from size_t to ssize_t is not needed in addr_store(),
drop it.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
---
drivers/mfd/intel_soc_pmic_bxtwc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/intel_soc_pmic_bxtwc.c b/drivers/mfd/intel_soc_pmic_bxtwc.c
index 4e890f095721..953f535a3c93 100644
--- a/drivers/mfd/intel_soc_pmic_bxtwc.c
+++ b/drivers/mfd/intel_soc_pmic_bxtwc.c
@@ -348,7 +348,7 @@ static ssize_t addr_store(struct device *dev,
return ret;
}

- return (ssize_t)count;
+ return count;
}

static ssize_t val_show(struct device *dev,
--
2.35.1