Skip to content

Commit ec92497

Browse files
committed
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
Pull sparc updates from David Miller: "Just a few small changes: - Fix console naming inconsistency with hypervisor consoles, from John Paul Adrian Glaubitz - Fix userland compilation due to use of u_int, from Masahiro Yamada" * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc: sparc64: Add missing newline at end of file sparc: fix unknown type name u_int in uapi header sparc: configs: Remove useless UEVENT_HELPER_PATH sparc: Remove redundant copy of the LGPL-2.0 sunhv: Fix device naming inconsistency between sunhv_console and sunhv_reg
2 parents d121092 + 61daf52 commit ec92497

File tree

6 files changed

+3
-487
lines changed

6 files changed

+3
-487
lines changed

arch/sparc/configs/sparc32_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ CONFIG_INET6_ESP=m
2727
CONFIG_INET6_IPCOMP=m
2828
CONFIG_IPV6_TUNNEL=m
2929
CONFIG_NET_PKTGEN=m
30-
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
3130
CONFIG_BLK_DEV_LOOP=m
3231
CONFIG_BLK_DEV_CRYPTOLOOP=m
3332
CONFIG_BLK_DEV_RAM=y

arch/sparc/configs/sparc64_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ CONFIG_IPV6_TUNNEL=m
5757
CONFIG_VLAN_8021Q=m
5858
CONFIG_NET_PKTGEN=m
5959
CONFIG_NET_TCPPROBE=m
60-
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
6160
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
6261
CONFIG_CONNECTOR=m
6362
CONFIG_BLK_DEV_LOOP=m

arch/sparc/include/uapi/asm/openpromio.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
#include <linux/compiler.h>
66
#include <linux/ioctl.h>
7-
#include <linux/types.h>
87

98
/*
109
* SunOS and Solaris /dev/openprom definitions. The ioctl values
@@ -13,7 +12,7 @@
1312

1413
struct openpromio
1514
{
16-
u_int oprom_size; /* Actual size of the oprom_array. */
15+
unsigned int oprom_size; /* Actual size of the oprom_array. */
1716
char oprom_array[1]; /* Holds property names and values. */
1817
};
1918

0 commit comments

Comments
 (0)