diff options
author | Stefan Wahren <wahrenst@gmx.net> | 2024-07-28 15:00:24 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-31 10:47:10 +0200 |
commit | 727f5a24b8b0164ac807dd77b469ed6e50df825d (patch) | |
tree | 8cbaf567384b09e48f9a299e34c74773ea7836e4 | |
parent | 3c2360f1a50e6ef74c61748696134b5b31a9e191 (diff) | |
download | linux-727f5a24b8b0164ac807dd77b469ed6e50df825d.tar.gz linux-727f5a24b8b0164ac807dd77b469ed6e50df825d.tar.bz2 linux-727f5a24b8b0164ac807dd77b469ed6e50df825d.zip |
usb: dwc2: debugfs: Print parameter no_clock_gating
The commit c4a0f7a6ab54 ("usb: dwc2: Skip clock gating on Samsung
SoCs") introduced a parameter to skip enabling clock gating mode
even the hardware platform should supports it.
In order to make this more visible also print this in show
parameters of debugfs.
Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Acked-by: Minas Harutyunyan <hminas@synopsys.com>
Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com>
Link: https://lore.kernel.org/r/20240728130029.78279-3-wahrenst@gmx.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/dwc2/debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/dwc2/debugfs.c b/drivers/usb/dwc2/debugfs.c index 7c82ab590401..3116ac72747f 100644 --- a/drivers/usb/dwc2/debugfs.c +++ b/drivers/usb/dwc2/debugfs.c @@ -702,6 +702,7 @@ static int params_show(struct seq_file *seq, void *v) print_param(seq, p, uframe_sched); print_param(seq, p, external_id_pin_ctl); print_param(seq, p, power_down); + print_param(seq, p, no_clock_gating); print_param(seq, p, lpm); print_param(seq, p, lpm_clock_gating); print_param(seq, p, besl); |