pwm: th1520: use vertical import style

Convert `use` imports to vertical layout for better readability and
maintainability.

Signed-off-by: Guru Das Srinagesh <linux@gurudas.dev>
Reviewed-by: Michal Wilczynski <m.wilczynski@samsung.com>
Link: https://patch.msgid.link/20260721-pwm-rust-vert-imp-v2-1-9f91547f5e07@gurudas.dev
Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
This commit is contained in:
Guru Das Srinagesh 2026-07-21 00:49:27 -07:00 committed by Uwe Kleine-König
parent 3aeb299768
commit b4e94b0418

View File

@ -23,15 +23,21 @@
use core::ops::Deref;
use kernel::{
clk::Clk,
device::{Bound, Core, Device},
device::{
Bound,
Core,
Device, //
},
devres,
io::{
mem::IoMem,
Io, //
},
of, platform,
of,
platform,
prelude::*,
pwm, time,
pwm,
time, //
};
const TH1520_MAX_PWM_NUM: u32 = 6;