mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-11 06:54:21 +00:00
Add kernel support for SAMA7G5 by back-porting mainline kernel patches. Among SAMA7G5 features could be remembered: - ARM Cortex-A7 - double data rate multi-port dynamic RAM controller supporting DDR2, DDR3, DDR3L, LPDDR2, LPDDR3 up to 533MHz - peripherals for audio, video processing - 1 gigabit + 1 megabit Ethernet controllers - 6 CAN controllers - trust zone support - DVFS for CPU - criptography IPs Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
From 19dd7c72c6c457c147133a7dad8ab28d35538f99 Mon Sep 17 00:00:00 2001
|
|
From: Eugen Hristev <eugen.hristev@microchip.com>
|
|
Date: Tue, 13 Apr 2021 12:57:05 +0200
|
|
Subject: [PATCH 163/247] media: atmel: atmel-isc-base: add id to clock debug
|
|
message
|
|
|
|
Add the clock id to the debug message regarding clock setup
|
|
|
|
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
|
|
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
|
|
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
|
|
---
|
|
drivers/media/platform/atmel/atmel-isc-base.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/drivers/media/platform/atmel/atmel-isc-base.c b/drivers/media/platform/atmel/atmel-isc-base.c
|
|
index 6c709f6a408c..f9190fccb482 100644
|
|
--- a/drivers/media/platform/atmel/atmel-isc-base.c
|
|
+++ b/drivers/media/platform/atmel/atmel-isc-base.c
|
|
@@ -281,8 +281,8 @@ static int isc_clk_enable(struct clk_hw *hw)
|
|
unsigned long flags;
|
|
unsigned int status;
|
|
|
|
- dev_dbg(isc_clk->dev, "ISC CLK: %s, div = %d, parent id = %d\n",
|
|
- __func__, isc_clk->div, isc_clk->parent_id);
|
|
+ dev_dbg(isc_clk->dev, "ISC CLK: %s, id = %d, div = %d, parent id = %d\n",
|
|
+ __func__, id, isc_clk->div, isc_clk->parent_id);
|
|
|
|
spin_lock_irqsave(&isc_clk->lock, flags);
|
|
regmap_update_bits(regmap, ISC_CLKCFG,
|
|
--
|
|
2.32.0
|
|
|