Skip to content

Commit ce9e933

Browse files
committed
Merge tag 'sh-for-v7.1-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/glaubitz/sh-linux
Pull sh updates from John Paul Adrian Glaubitz: "Two patches from Thomas Zimmermann, one by Tim Bird and one by Thomas Weißschuh. The first patch by Thomas Zimmermann adds a missing include in dac.h for SH-3 which became necessary after 243ce64 ("backlight: Do not include <linux/fb.h> in header file") which made __raw_readb() and __raw_writeb() inaccessible in dac.h. Thomas' second patch drops CONFIG_FIRMWARE_EDID for SH as it depends on X86 or EFI_GENERIC_STUB which are not defined on SH for obvious reasons. The patch by Tim Bird fixes just a small typo in two SPDX ID lines which he stumbled over by accident. And, least but not last, the patch by Thomas Weißschuh removes the CONFIG_VSYSCALL reference from UAPI. This was necessary as the definition of AT_SYSINFO_EHDR was gated between CONFIG_VSYSCALL to avoid a default gate VMA to be created. However that default gate VMA was removed entirely in commit a6c19df (arm64,ia64,ppc,s390, sh,tile,um,x86,mm: remove default gate area)" * tag 'sh-for-v7.1-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/glaubitz/sh-linux: sh: Drop CONFIG_FIRMWARE_EDID from defconfig files sh: Remove CONFIG_VSYSCALL reference from UAPI sh: Fix typo in SPDX license ID lines sh: Include <linux/io.h> in dac.h
2 parents 065c4e6 + 647b43f commit ce9e933

8 files changed

Lines changed: 5 additions & 11 deletions

File tree

arch/sh/configs/dreamcast_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ CONFIG_HW_RANDOM=y
5050
CONFIG_WATCHDOG=y
5151
CONFIG_SH_WDT=y
5252
CONFIG_FB=y
53-
CONFIG_FIRMWARE_EDID=y
5453
CONFIG_FB_PVR2=y
5554
CONFIG_FRAMEBUFFER_CONSOLE=y
5655
CONFIG_FONTS=y

arch/sh/configs/hp6xx_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ CONFIG_SERIAL_SH_SCI_CONSOLE=y
3535
CONFIG_LEGACY_PTY_COUNT=64
3636
# CONFIG_HWMON is not set
3737
CONFIG_FB=y
38-
CONFIG_FIRMWARE_EDID=y
3938
CONFIG_FB_HIT=y
4039
CONFIG_FB_SH_MOBILE_LCDC=y
4140
CONFIG_FRAMEBUFFER_CONSOLE=y

arch/sh/configs/se7343_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ CONFIG_I2C=y
5757
CONFIG_I2C_SH_MOBILE=y
5858
# CONFIG_HWMON is not set
5959
CONFIG_FB=y
60-
CONFIG_FIRMWARE_EDID=y
6160
CONFIG_FB_SH_MOBILE_LCDC=m
6261
CONFIG_SOUND=y
6362
CONFIG_SND=y

arch/sh/configs/se7780_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ CONFIG_SERIAL_SH_SCI_CONSOLE=y
6060
# CONFIG_HW_RANDOM is not set
6161
CONFIG_THERMAL=y
6262
CONFIG_FB=y
63-
CONFIG_FIRMWARE_EDID=y
6463
CONFIG_FB_SH_MOBILE_LCDC=m
6564
CONFIG_FRAMEBUFFER_CONSOLE=y
6665
CONFIG_LOGO=y

arch/sh/drivers/platform_early.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX--License-Identifier: GPL-2.0
1+
// SPDX-License-Identifier: GPL-2.0
22

33
#include <asm/platform_early.h>
44
#include <linux/mod_devicetable.h>

arch/sh/include/asm/platform_early.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* SPDX--License-Identifier: GPL-2.0 */
1+
/* SPDX-License-Identifier: GPL-2.0 */
22

33
#ifndef __PLATFORM_EARLY__
44
#define __PLATFORM_EARLY__

arch/sh/include/cpu-sh3/cpu/dac.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#ifndef __ASM_CPU_SH3_DAC_H
33
#define __ASM_CPU_SH3_DAC_H
44

5+
#include <linux/io.h>
6+
57
/*
68
* Copyright (C) 2003 Andriy Skulysh
79
*/

arch/sh/include/uapi/asm/auxvec.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,10 @@
1313
*/
1414
#define AT_FPUCW 18 /* Used FPU control word. */
1515

16-
#if defined(CONFIG_VSYSCALL) || !defined(__KERNEL__)
1716
/*
18-
* Only define this in the vsyscall case, the entry point to
19-
* the vsyscall page gets placed here. The kernel will attempt
20-
* to build a gate VMA we don't care about otherwise..
17+
* The entry point to the vsyscall page gets placed here.
2118
*/
2219
#define AT_SYSINFO_EHDR 33
23-
#endif
2420

2521
/*
2622
* More complete cache descriptions than AT_[DIU]CACHEBSIZE. If the

0 commit comments

Comments
 (0)