mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
9bc77dff5f
Regenerate all beaglebone patches and add one vfs tracer patch for powertop Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
From e2542efb1a4a61334eace382a2a4c6d5874cc078 Mon Sep 17 00:00:00 2001
|
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
|
Date: Wed, 16 May 2012 17:57:31 +0200
|
|
Subject: [PATCH 42/79] omap hwmod: silence st_shift error
|
|
|
|
During boot the following error is shown:
|
|
|
|
[ 0.545227] omap_hwmod: wkup_m3: wkup_m3: hwmod data error: OMAP4 does not support st_shift
|
|
|
|
Since this PSP tree will never run on omap4 remove the print so people will stop getting scared by it.
|
|
|
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
|
---
|
|
arch/arm/mach-omap2/omap_hwmod.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
|
|
index bc14f9f..a050699 100644
|
|
--- a/arch/arm/mach-omap2/omap_hwmod.c
|
|
+++ b/arch/arm/mach-omap2/omap_hwmod.c
|
|
@@ -1343,9 +1343,6 @@ static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
|
|
* Note: cpu_is_omap34xx is true for am33xx device as well.
|
|
*/
|
|
if (cpu_is_omap44xx() || cpu_is_am33xx()) {
|
|
- if (ohri.st_shift)
|
|
- pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
|
|
- oh->name, name);
|
|
ret = omap4_prminst_deassert_hardreset(ohri.rst_shift,
|
|
oh->clkdm->pwrdm.ptr->prcm_partition,
|
|
oh->clkdm->pwrdm.ptr->prcm_offs,
|
|
--
|
|
1.7.10
|
|
|