mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +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>
32 lines
974 B
Diff
32 lines
974 B
Diff
From d6bd676b49cf10046665efde820b0cc00dc43994 Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Thu, 28 Sep 2023 17:04:07 +0300
|
|
Subject: [PATCH] media: rp1: cfe: Drop unused field
|
|
|
|
Drop 'sensor_embedded_data' field, as it is unused.
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
@@ -292,7 +292,6 @@ struct cfe_device {
|
|
struct csi2_device csi2;
|
|
struct pisp_fe_device fe;
|
|
|
|
- bool sensor_embedded_data;
|
|
int fe_csi2_channel;
|
|
|
|
unsigned int sequence;
|
|
@@ -1821,8 +1820,6 @@ static int cfe_probe_complete(struct cfe
|
|
|
|
cfe->v4l2_dev.notify = cfe_notify;
|
|
|
|
- cfe->sensor_embedded_data = (cfe->sensor->entity.num_pads >= 2);
|
|
-
|
|
for (i = 0; i < NUM_NODES; i++) {
|
|
ret = cfe_register_node(cfe, i);
|
|
if (ret) {
|