mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-06 08:17:06 +08:00

These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
30 lines
864 B
Diff
30 lines
864 B
Diff
From 8ac0f02ca0328eee2b1b491913cfd28d00ee47e9 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Tue, 7 Mar 2023 20:51:53 +0000
|
|
Subject: [PATCH] rtc: ds3232: Add DT compatible string for ds3234
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/rtc/rtc-ds3232.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
--- a/drivers/rtc/rtc-ds3232.c
|
|
+++ b/drivers/rtc/rtc-ds3232.c
|
|
@@ -701,9 +701,16 @@ static int ds3234_probe(struct spi_devic
|
|
return ds3232_probe(&spi->dev, regmap, spi->irq, "ds3234");
|
|
}
|
|
|
|
+static const __maybe_unused struct of_device_id ds3234_of_match[] = {
|
|
+ { .compatible = "dallas,ds3234" },
|
|
+ { }
|
|
+};
|
|
+MODULE_DEVICE_TABLE(of, ds3234_of_match);
|
|
+
|
|
static struct spi_driver ds3234_driver = {
|
|
.driver = {
|
|
.name = "ds3234",
|
|
+ .of_match_table = of_match_ptr(ds3234_of_match),
|
|
},
|
|
.probe = ds3234_probe,
|
|
};
|