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

Commit 4b01abc9 authored by Steven Whitehouse's avatar Steven Whitehouse
Browse files

Merge branch 'master'

parents 47c96298 1def630a
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -214,12 +214,13 @@ hardware.
	The interaction of the iflag bits is as follows (parity error
	given as an example):
	Parity error	INPCK	IGNPAR
	None		n/a	n/a	character received
	Yes		n/a	0	character discarded
	Yes		0	1	character received, marked as
	n/a		0	n/a	character received, marked as
					TTY_NORMAL
	Yes		1	1	character received, marked as
	None		1	n/a	character received, marked as
					TTY_NORMAL
	Yes		1	0	character received, marked as
					TTY_PARITY
	Yes		1	1	character discarded

	Other flags may be used (eg, xon/xoff characters) if your
	hardware supports hardware "soft" flow control.
+25 −2
Original line number Diff line number Diff line
@@ -565,7 +565,19 @@ BROADBAND PROCESSOR ARCHITECTURE
P:	Arnd Bergmann
M:	arnd@arndb.de
L:	linuxppc-dev@ozlabs.org
W:	http://linuxppc64.org
W:	http://www.penguinppc.org/ppc64/
S:	Supported

BROADCOM BNX2 GIGABIT ETHERNET DRIVER
P:	Michael Chan
M:	mchan@broadcom.com
L:	netdev@vger.kernel.org
S:	Supported

BROADCOM TG3 GIGABIT ETHERNET DRIVER
P:	Michael Chan
M:	mchan@broadcom.com
L:	netdev@vger.kernel.org
S:	Supported

BTTV VIDEO4LINUX DRIVER
@@ -1734,7 +1746,7 @@ M: paulus@au.ibm.com
P:	Anton Blanchard
M:	anton@samba.org
M:	anton@au.ibm.com
W:	http://linuxppc64.org
W:	http://www.penguinppc.org/ppc64/
L:	linuxppc-dev@ozlabs.org
S:	Supported

@@ -1895,6 +1907,11 @@ L: linux-kernel@vger.kernel.org
W:	http://www.atnf.csiro.au/~rgooch/linux/kernel-patches.html
S:	Maintained

MULTIMEDIA CARD SUBSYSTEM
P:	Russell King
M:	rmk+mmc@arm.linux.org.uk
S:	Maintained

MULTISOUND SOUND DRIVER
P:	Andrew Veliath
M:	andrewtv@usa.net
@@ -1917,6 +1934,12 @@ M: James.Bottomley@HansenPartnership.com
L:	linux-scsi@vger.kernel.org
S:	Maintained

NETEM NETWORK EMULATOR
P:	Stephen Hemminger
M:	shemminger@osdl.org
L:	netem@osdl.org
S:	Maintained

NETFILTER/IPTABLES/IPCHAINS
P:	Rusty Russell
P:	Marc Boucher
+2 −2
Original line number Diff line number Diff line
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 17
EXTRAVERSION =-rc5
NAME=Lordi Rules
EXTRAVERSION =-rc6
NAME=Crazed Snow-Weasel

# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
+0 −1
Original line number Diff line number Diff line
@@ -182,7 +182,6 @@ EXPORT_SYMBOL(smp_num_cpus);
EXPORT_SYMBOL(smp_call_function);
EXPORT_SYMBOL(smp_call_function_on_cpu);
EXPORT_SYMBOL(_atomic_dec_and_lock);
EXPORT_SYMBOL(cpu_present_mask);
#endif /* CONFIG_SMP */

/*
+3 −3
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ common_shutdown_1(void *generic_ptr)
	if (cpuid != boot_cpuid) {
		flags |= 0x00040000UL; /* "remain halted" */
		*pflags = flags;
		clear_bit(cpuid, &cpu_present_mask);
		cpu_clear(cpuid, cpu_present_map);
		halt();
	}
#endif
@@ -120,8 +120,8 @@ common_shutdown_1(void *generic_ptr)

#ifdef CONFIG_SMP
	/* Wait for the secondaries to halt. */
	cpu_clear(boot_cpuid, cpu_possible_map);
	while (cpus_weight(cpu_possible_map))
	cpu_clear(boot_cpuid, cpu_present_map);
	while (cpus_weight(cpu_present_map))
		barrier();
#endif

Loading