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

Commit c79c33af authored by Mark Brown's avatar Mark Brown
Browse files

Merge remote-tracking branch 'asoc/topic/core' into tmp

parents 1c9a341b 824ef826
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2953,7 +2953,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
			improve throughput, but will also increase the
			improve throughput, but will also increase the
			amount of memory reserved for use by the client.
			amount of memory reserved for use by the client.


	swapaccount[=0|1]
	swapaccount=[0|1]
			[KNL] Enable accounting of swap in memory resource
			[KNL] Enable accounting of swap in memory resource
			controller if no parameter or 1 is given or disable
			controller if no parameter or 1 is given or disable
			it if 0 is given (See Documentation/cgroups/memory.txt)
			it if 0 is given (See Documentation/cgroups/memory.txt)
+3 −3
Original line number Original line Diff line number Diff line
@@ -5885,7 +5885,7 @@ F: drivers/i2c/busses/i2c-omap.c
F:	include/linux/i2c-omap.h
F:	include/linux/i2c-omap.h


OMAP DEVICE TREE SUPPORT
OMAP DEVICE TREE SUPPORT
M:	Benoît Cousson <b-cousson@ti.com>
M:	Benoît Cousson <bcousson@baylibre.com>
M:	Tony Lindgren <tony@atomide.com>
M:	Tony Lindgren <tony@atomide.com>
L:	linux-omap@vger.kernel.org
L:	linux-omap@vger.kernel.org
L:	devicetree@vger.kernel.org
L:	devicetree@vger.kernel.org
@@ -5965,14 +5965,14 @@ S: Maintained
F:	drivers/char/hw_random/omap-rng.c
F:	drivers/char/hw_random/omap-rng.c


OMAP HWMOD SUPPORT
OMAP HWMOD SUPPORT
M:	Benoît Cousson <b-cousson@ti.com>
M:	Benoît Cousson <bcousson@baylibre.com>
M:	Paul Walmsley <paul@pwsan.com>
M:	Paul Walmsley <paul@pwsan.com>
L:	linux-omap@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained
S:	Maintained
F:	arch/arm/mach-omap2/omap_hwmod.*
F:	arch/arm/mach-omap2/omap_hwmod.*


OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
M:	Benoît Cousson <b-cousson@ti.com>
M:	Benoît Cousson <bcousson@baylibre.com>
L:	linux-omap@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained
S:	Maintained
F:	arch/arm/mach-omap2/omap_hwmod_44xx_data.c
F:	arch/arm/mach-omap2/omap_hwmod_44xx_data.c
+1 −1
Original line number Original line Diff line number Diff line
VERSION = 3
VERSION = 3
PATCHLEVEL = 11
PATCHLEVEL = 11
SUBLEVEL = 0
SUBLEVEL = 0
EXTRAVERSION = -rc6
EXTRAVERSION = -rc7
NAME = Linux for Workgroups
NAME = Linux for Workgroups


# *DOCUMENTATION*
# *DOCUMENTATION*
+10 −0
Original line number Original line Diff line number Diff line
@@ -39,9 +39,18 @@ ARC_ENTRY strchr
	ld.a	r2,[r0,4]
	ld.a	r2,[r0,4]
	sub	r12,r6,r7
	sub	r12,r6,r7
	bic	r12,r12,r6
	bic	r12,r12,r6
#ifdef __LITTLE_ENDIAN__
	and	r7,r12,r4
	and	r7,r12,r4
	breq	r7,0,.Loop ; For speed, we want this branch to be unaligned.
	breq	r7,0,.Loop ; For speed, we want this branch to be unaligned.
	b	.Lfound_char ; Likewise this one.
	b	.Lfound_char ; Likewise this one.
#else
	and	r12,r12,r4
	breq	r12,0,.Loop ; For speed, we want this branch to be unaligned.
	lsr_s	r12,r12,7
	bic 	r2,r7,r6
	b.d	.Lfound_char_b
	and_s	r2,r2,r12
#endif
; /* We require this code address to be unaligned for speed...  */
; /* We require this code address to be unaligned for speed...  */
.Laligned:
.Laligned:
	ld_s	r2,[r0]
	ld_s	r2,[r0]
@@ -95,6 +104,7 @@ ARC_ENTRY strchr
	lsr	r7,r7,7
	lsr	r7,r7,7


	bic	r2,r7,r6
	bic	r2,r7,r6
.Lfound_char_b:
	norm	r2,r2
	norm	r2,r2
	sub_s	r0,r0,4
	sub_s	r0,r0,4
	asr_s	r2,r2,3
	asr_s	r2,r2,3
+2 −2
Original line number Original line Diff line number Diff line
@@ -14,11 +14,11 @@
	compatible = "atmel,at91sam9n12ek", "atmel,at91sam9n12", "atmel,at91sam9";
	compatible = "atmel,at91sam9n12ek", "atmel,at91sam9n12", "atmel,at91sam9";


	chosen {
	chosen {
		bootargs = "mem=128M console=ttyS0,115200 root=/dev/mtdblock1 rw rootfstype=jffs2";
		bootargs = "console=ttyS0,115200 root=/dev/mtdblock1 rw rootfstype=jffs2";
	};
	};


	memory {
	memory {
		reg = <0x20000000 0x10000000>;
		reg = <0x20000000 0x8000000>;
	};
	};


	clocks {
	clocks {
Loading