This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/arch/arm/mach-meson8b/pm.c b/arch/arm/mach-meson8b/pm.c | |
| index 2855008..a5b111f 100755 | |
| --- a/arch/arm/mach-meson8b/pm.c | |
| +++ b/arch/arm/mach-meson8b/pm.c | |
| @@ -56,9 +56,8 @@ static int early_suspend_flag = 0; | |
| #define ON 1 | |
| #define OFF 0 | |
| -static unsigned int cec_config; // 4 bytes: use to control cec switch on/off,distinguish between Mbox and Tablet. bit[0]:1:Mbox; 0:Tablet | |
| +static unsigned int cec_config = 0; // 4 bytes: use to control cec switch on/off,distinguish between Mbox and Tablet. bit[0]:1:Mbox; 0:Tablet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 6f1e3aa7371d29a2de74b019753e4f2ee82c6bb7 Mon Sep 17 00:00:00 2001 | |
| From: Brian Kim <brian.kim@hardkernel.com> | |
| Date: Mon, 4 Jan 2016 15:27:19 +0900 | |
| Subject: [PATCH] ODROIDC: Add disable automatic TV power on function in | |
| HDMI-CEC | |
| This change can disable switch TV on automatically using HDMI-CEC. This | |
| function support it using AUTO_POWER_ON_MASK flag in boot parameter. | |
| Change-Id: I3257dbeb4e13b829cd1e3c7df8a9a6321060e9e3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/arch/arm/kernel/sleep.S b/arch/arm/kernel/sleep.S | |
| index 0f6c100..720f3b2 100644 | |
| --- a/arch/arm/kernel/sleep.S | |
| +++ b/arch/arm/kernel/sleep.S | |
| @@ -131,7 +131,10 @@ ENTRY(cpu_resume_arm) | |
| ENTRY(cpu_resume) | |
| ARM_BE8(setend be) @ ensure we are in BE mode | |
| #ifdef CONFIG_ARM_VIRT_EXT | |
| - bl __hyp_stub_install_secondary | |
| + mrc p15, 0, r1, c0, c0, 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/include/xen/interface/io/blkif.h b/include/xen/interface/io/blkif.h | |
| index c33e1c4..075a251 100644 | |
| --- a/include/xen/interface/io/blkif.h | |
| +++ b/include/xen/interface/io/blkif.h | |
| @@ -145,7 +145,7 @@ struct blkif_request_segment { | |
| struct blkif_request_rw { | |
| uint8_t nr_segments; /* number of segments */ | |
| blkif_vdev_t handle; /* only for read/write requests */ | |
| -#ifndef CONFIG_X86_32 | |
| +#if !defined(CONFIG_X86_32) && !defined(CONFIG_ARM) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ODROIDXU-UBOOT-CONFIG | |
| # source by kenken> http://forum.odroid.com/viewtopic.php?f=98&t=6643#p64051 | |
| setenv dtb_addr_r 0x42000000 | |
| setenv dtb_path /exynos5422-odroidxu3.dtb | |
| setenv kernel_addr_r 0x60000000 | |
| setenv kernel_path /zImage | |
| setenv xen_addr_r 0x50000000 | |
| setenv xen_path /xen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/xen/arch/arm/platforms/exynos5.c b/xen/arch/arm/platforms/exynos5.c | |
| index 79e3a5f..7813f59 100644 | |
| --- a/xen/arch/arm/platforms/exynos5.c | |
| +++ b/xen/arch/arm/platforms/exynos5.c | |
| @@ -165,8 +165,9 @@ static void exynos_cpu_power_up(void __iomem *power, int cpu) | |
| static int exynos5_cpu_power_up(void __iomem *power, int cpu) | |
| { | |
| - unsigned int timeout; | |
| + unsigned int timeout, val; |
NewerOlder