public inbox for linux-pwm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] pwm: dwc: Use size macro
@ 2026-01-05  9:17 Raag Jadav
  2026-01-05 16:41 ` Andy Shevchenko
  2026-01-12  7:59 ` Uwe Kleine-König
  0 siblings, 2 replies; 6+ messages in thread
From: Raag Jadav @ 2026-01-05  9:17 UTC (permalink / raw)
  To: ukleinek, andriy.shevchenko, heikki.krogerus
  Cc: linux-pwm, linux-kernel, Raag Jadav

Use SZ_4K from size.h instead of hardcoding constant.

Signed-off-by: Raag Jadav <raag.jadav@intel.com>
---
 drivers/pwm/pwm-dwc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/pwm/pwm-dwc.c b/drivers/pwm/pwm-dwc.c
index b6c16139ce4a..86b72db58741 100644
--- a/drivers/pwm/pwm-dwc.c
+++ b/drivers/pwm/pwm-dwc.c
@@ -22,13 +22,14 @@
 #include <linux/pci.h>
 #include <linux/pm_runtime.h>
 #include <linux/pwm.h>
+#include <linux/sizes.h>
 
 #include "pwm-dwc.h"
 
 /* Elkhart Lake */
 static const struct dwc_pwm_info ehl_pwm_info = {
 	.nr = 2,
-	.size = 0x1000,
+	.size = SZ_4K,
 };
 
 static int dwc_pwm_init_one(struct device *dev, struct dwc_pwm_drvdata *ddata, unsigned int idx)
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-01-12  8:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-05  9:17 [PATCH v1] pwm: dwc: Use size macro Raag Jadav
2026-01-05 16:41 ` Andy Shevchenko
2026-01-05 16:51   ` Raag Jadav
2026-01-05 18:07     ` Andy Shevchenko
2026-01-06  9:20       ` Raag Jadav
2026-01-12  7:59 ` Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox