mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
24 lines
708 B
Diff
24 lines
708 B
Diff
From 713a7ef9d73fca0f7fed122cb854d930b7a6ba5a Mon Sep 17 00:00:00 2001
|
|
From: Naushir Patuck <naush@raspberrypi.com>
|
|
Date: Wed, 21 Jun 2023 08:45:02 +0100
|
|
Subject: [PATCH] driver: media: i2c: imx477: Re-enable temperature sensor
|
|
|
|
The temperature sensor enable register write got lost at some point.
|
|
Re-enable it.
|
|
|
|
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
|
|
---
|
|
drivers/media/i2c/imx477.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/media/i2c/imx477.c
|
|
+++ b/drivers/media/i2c/imx477.c
|
|
@@ -167,6 +167,7 @@ struct imx477_mode {
|
|
static const struct imx477_reg mode_common_regs[] = {
|
|
{0x0136, 0x18},
|
|
{0x0137, 0x00},
|
|
+ {0x0138, 0x01},
|
|
{0xe000, 0x00},
|
|
{0xe07a, 0x01},
|
|
{0x0808, 0x02},
|