Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32efe08d authored by David S. Miller's avatar David S. Miller
Browse files


Conflicts:
	drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.c

Small minor conflict in bnx2x, wherein one commit changed how
statistics were stored in software, and another commit
fixed endianness bugs wrt. reading the values provided by
the chip in memory.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents da194316 b01543df
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
VERSION = 3
VERSION = 3
PATCHLEVEL = 3
PATCHLEVEL = 3
SUBLEVEL = 0
SUBLEVEL = 0
EXTRAVERSION = -rc3
EXTRAVERSION = -rc4
NAME = Saber-toothed Squirrel
NAME = Saber-toothed Squirrel


# *DOCUMENTATION*
# *DOCUMENTATION*
+1 −0
Original line number Original line Diff line number Diff line
@@ -29,6 +29,7 @@
		compatible = "arm,cortex-a9-gic";
		compatible = "arm,cortex-a9-gic";
		#interrupt-cells = <3>;
		#interrupt-cells = <3>;
		interrupt-controller;
		interrupt-controller;
		cpu-offset = <0x8000>;
		reg = <0x10490000 0x1000>, <0x10480000 0x100>;
		reg = <0x10490000 0x1000>, <0x10480000 0x100>;
	};
	};


+3 −3
Original line number Original line Diff line number Diff line
@@ -46,11 +46,11 @@
	};
	};


	serial@70006200 {
	serial@70006200 {
		status = "disable";
		clock-frequency = <216000000>;
	};
	};


	serial@70006300 {
	serial@70006300 {
		clock-frequency = <216000000>;
		status = "disable";
	};
	};


	serial@70006400 {
	serial@70006400 {
@@ -60,7 +60,7 @@
	sdhci@c8000000 {
	sdhci@c8000000 {
		cd-gpios = <&gpio 173 0>; /* gpio PV5 */
		cd-gpios = <&gpio 173 0>; /* gpio PV5 */
		wp-gpios = <&gpio 57 0>;  /* gpio PH1 */
		wp-gpios = <&gpio 57 0>;  /* gpio PH1 */
		power-gpios = <&gpio 155 0>; /* gpio PT3 */
		power-gpios = <&gpio 169 0>; /* gpio PV1 */
	};
	};


	sdhci@c8000200 {
	sdhci@c8000200 {
+4 −1
Original line number Original line Diff line number Diff line
@@ -266,6 +266,7 @@ void die(const char *str, struct pt_regs *regs, int err)
{
{
	struct thread_info *thread = current_thread_info();
	struct thread_info *thread = current_thread_info();
	int ret;
	int ret;
	enum bug_trap_type bug_type = BUG_TRAP_TYPE_NONE;


	oops_enter();
	oops_enter();


@@ -273,7 +274,9 @@ void die(const char *str, struct pt_regs *regs, int err)
	console_verbose();
	console_verbose();
	bust_spinlocks(1);
	bust_spinlocks(1);
	if (!user_mode(regs))
	if (!user_mode(regs))
		report_bug(regs->ARM_pc, regs);
		bug_type = report_bug(regs->ARM_pc, regs);
	if (bug_type != BUG_TRAP_TYPE_NONE)
		str = "Oops - BUG";
	ret = __die(str, err, thread, regs);
	ret = __die(str, err, thread, regs);


	if (regs && kexec_should_crash(thread->task))
	if (regs && kexec_should_crash(thread->task))
+1 −0
Original line number Original line Diff line number Diff line
@@ -10,6 +10,7 @@
#include <asm/page.h>
#include <asm/page.h>
	
	
#define PROC_INFO							\
#define PROC_INFO							\
	. = ALIGN(4);							\
	VMLINUX_SYMBOL(__proc_info_begin) = .;				\
	VMLINUX_SYMBOL(__proc_info_begin) = .;				\
	*(.proc.info.init)						\
	*(.proc.info.init)						\
	VMLINUX_SYMBOL(__proc_info_end) = .;
	VMLINUX_SYMBOL(__proc_info_end) = .;
Loading