File 0001-fixed-error-missing-braces-around-initializer-on-SLE16.patch of Package nvidia-jetson-36-jp7
From a1eec2d8b44e261224b0ee85c99c2330557ddc1b Mon Sep 17 00:00:00 2001
From: Stefan Dirsch <sndirsch@suse.de>
Date: Sat, 15 Mar 2025 11:54:51 +0100
Subject: [PATCH] fixed error: missing braces around initializer on SLE16
---
drivers/thermal/tegra234-oc-event.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/thermal/tegra234-oc-event.c b/drivers/thermal/tegra234-oc-event.c
index c3187bb9..48d71aa3 100644
--- a/drivers/thermal/tegra234-oc-event.c
+++ b/drivers/thermal/tegra234-oc-event.c
@@ -126,17 +126,14 @@ static struct attribute *t234_oc3_attrs[] = {
static const struct attribute_group oc1_data = {
.attrs = t234_oc1_attrs,
- NULL,
};
static const struct attribute_group oc2_data = {
.attrs = t234_oc2_attrs,
- NULL,
};
static const struct attribute_group oc3_data = {
.attrs = t234_oc3_attrs,
- NULL,
};
static const struct attribute_group *t234_oc_groups[] = {
--
2.43.0