mirror of
https://github.com/armbian/build.git
synced 2025-08-14 23:26:57 +02:00
* Recycling of megous v5.16.4 patches The patches were sorted as far as possible. Some patches are renamed according to their place of application. The length of the patch name has been changed to improve readability using the `git format-patch --filename-max-length=75` method. The folder containing the patches will have the name `patches.name` and the corresponding file `series.name` for the convenience of processing and moving them upstream. But the control file remains `series.conf`. Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Add a series of armbian patches for 5.16 Signed-off-by: The-going <48602507+The-going@users.noreply.github.com> * Remove patches whose fixes are already in the kernel Signed-off-by: The-going <48602507+The-going@users.noreply.github.com>
29 lines
708 B
Diff
29 lines
708 B
Diff
From d9ab54b1dd9f3a3d6bf7f886c58c43c64a220151 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megous@megous.com>
|
|
Date: Wed, 27 Oct 2021 17:22:51 +0200
|
|
Subject: [PATCH 048/446] media: i2c: gc2145: Disable debug output
|
|
|
|
People don't like it. Hmm...
|
|
|
|
Signed-off-by: Ondrej Jirman <megous@megous.com>
|
|
---
|
|
drivers/media/i2c/gc2145.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/media/i2c/gc2145.c b/drivers/media/i2c/gc2145.c
|
|
index 979427918..de24ee04b 100644
|
|
--- a/drivers/media/i2c/gc2145.c
|
|
+++ b/drivers/media/i2c/gc2145.c
|
|
@@ -8,7 +8,7 @@
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
-#define DEBUG
|
|
+//#define DEBUG
|
|
|
|
#include <asm/div64.h>
|
|
#include <linux/clk.h>
|
|
--
|
|
2.31.1
|
|
|