summaryrefslogtreecommitdiff
path: root/drivers/reset/reset-raspberrypi.c
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-05-18 14:30:44 -0600
committerTom Rini <[email protected]>2026-05-18 16:56:07 -0600
commit85b643b7d08c9940481ff8a271e674a9626fa2af (patch)
treef4cc4842a42fbeb518be2fe215a682128404933f /drivers/reset/reset-raspberrypi.c
parent11e1be868cbf119203445a2a4b1bf6a56dece031 (diff)
parent05f76ca898b4fa98b9f875013447a3533d627ca3 (diff)
Merge branch 'staticize-constify-drivers' into next
This brings in a number of patches from Marek Vasut to clean up cases tree-wide where a struct should be marked as static and const (in some cases only one of these was needed, but the majority are both).
Diffstat (limited to 'drivers/reset/reset-raspberrypi.c')
-rw-r--r--drivers/reset/reset-raspberrypi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/reset/reset-raspberrypi.c b/drivers/reset/reset-raspberrypi.c
index 1792f0813f7..73acd301e3d 100644
--- a/drivers/reset/reset-raspberrypi.c
+++ b/drivers/reset/reset-raspberrypi.c
@@ -28,7 +28,7 @@ static int raspberrypi_reset_assert(struct reset_ctl *reset_ctl)
}
}
-struct reset_ops raspberrypi_reset_ops = {
+static const struct reset_ops raspberrypi_reset_ops = {
.request = raspberrypi_reset_request,
.rst_assert = raspberrypi_reset_assert,
};