diff options
author | Dhruva Gole <d-gole@ti.com> | 2024-08-05 15:41:18 +0530 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2024-08-05 10:38:10 -0700 |
commit | a80a3d92dc600fed760edb8a633ea80712faaf98 (patch) | |
tree | b77c6adceaa129132f47afa1241be0cfa0c03dff /drivers/bus | |
parent | 0070dc29c85f0859a6071844b88fca6bce2974e4 (diff) | |
download | lwn-a80a3d92dc600fed760edb8a633ea80712faaf98.tar.gz lwn-a80a3d92dc600fed760edb8a633ea80712faaf98.zip |
bus: ti-sysc: Remove excess struct member 'disable_on_idle' description
When built with W=1, the driver throws the following warning:
../drivers/bus/ti-sysc.c:169: warning: Excess struct member
'disable_on_idle' description in 'sysc'
Fix it by removing the excess description.
Signed-off-by: Dhruva Gole <d-gole@ti.com>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Link: https://lore.kernel.org/r/20240805101118.427133-1-d-gole@ti.com
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/ti-sysc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 7caaf89f3bf2..270a94a06e05 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -126,7 +126,6 @@ static const char * const clock_names[SYSC_MAX_CLOCKS] = { * @enabled: sysc runtime enabled status * @needs_resume: runtime resume needed on resume from suspend * @child_needs_resume: runtime resume needed for child on resume from suspend - * @disable_on_idle: status flag used for disabling modules with resets * @idle_work: work structure used to perform delayed idle on a module * @pre_reset_quirk: module specific pre-reset quirk * @post_reset_quirk: module specific post-reset quirk |