Skip to content

Commit c4246e1

Browse files
Guru Das SrinageshLinux RISC-V bot
authored andcommitted
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> Signed-off-by: Linux RISC-V bot <linux.riscv.bot@gmail.com>
1 parent 89be0ce commit c4246e1

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

drivers/pwm/pwm_th1520.rs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,21 @@
2323
use core::ops::Deref;
2424
use kernel::{
2525
clk::Clk,
26-
device::{Bound, Core, Device},
26+
device::{
27+
Bound,
28+
Core,
29+
Device, //
30+
},
2731
devres,
2832
io::{
2933
mem::IoMem,
3034
Io, //
3135
},
32-
of, platform,
36+
of,
37+
platform, //
3338
prelude::*,
34-
pwm, time,
39+
pwm,
40+
time, //
3541
};
3642

3743
const TH1520_MAX_PWM_NUM: u32 = 6;

0 commit comments

Comments
 (0)