diff options
| author | Dave Airlie <airlied@redhat.com> | 2014-01-28 18:38:32 -0500 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2014-01-28 18:38:32 -0500 |
| commit | a5bd4f8ab0443ea62be34b112eb78cafb6b3042d (patch) | |
| tree | df3357914d967c2cf4619dbd14f4609daf406a15 | |
| parent | dee13f12f6ab0c0927adf9168dfc84da93fc9f13 (diff) | |
| parent | bed86f15bdc23436fb30d09e2faa3dfb7d3834e1 (diff) | |
Merge branch 'drm-armada-fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-cubox into drm-next
Just one-liner which corrects a select statement for DRM_KMS_FB_HELPER
which looks like it was missed in the initial merge. Based on 3.13.
* 'drm-armada-fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-cubox: (55 commits)
DRM: armada: fix missing DRM_KMS_FB_HELPER select
63 files changed, 384 insertions, 234 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 31a046213274..6a6e4ac72287 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -9231,6 +9231,7 @@ F: include/media/videobuf2-* | |||
| 9231 | 9231 | ||
| 9232 | VIRTIO CONSOLE DRIVER | 9232 | VIRTIO CONSOLE DRIVER |
| 9233 | M: Amit Shah <amit.shah@redhat.com> | 9233 | M: Amit Shah <amit.shah@redhat.com> |
| 9234 | L: virtio-dev@lists.oasis-open.org | ||
| 9234 | L: virtualization@lists.linux-foundation.org | 9235 | L: virtualization@lists.linux-foundation.org |
| 9235 | S: Maintained | 9236 | S: Maintained |
| 9236 | F: drivers/char/virtio_console.c | 9237 | F: drivers/char/virtio_console.c |
| @@ -9240,6 +9241,7 @@ F: include/uapi/linux/virtio_console.h | |||
| 9240 | VIRTIO CORE, NET AND BLOCK DRIVERS | 9241 | VIRTIO CORE, NET AND BLOCK DRIVERS |
| 9241 | M: Rusty Russell <rusty@rustcorp.com.au> | 9242 | M: Rusty Russell <rusty@rustcorp.com.au> |
| 9242 | M: "Michael S. Tsirkin" <mst@redhat.com> | 9243 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 9244 | L: virtio-dev@lists.oasis-open.org | ||
| 9243 | L: virtualization@lists.linux-foundation.org | 9245 | L: virtualization@lists.linux-foundation.org |
| 9244 | S: Maintained | 9246 | S: Maintained |
| 9245 | F: drivers/virtio/ | 9247 | F: drivers/virtio/ |
| @@ -9252,6 +9254,7 @@ F: include/uapi/linux/virtio_*.h | |||
| 9252 | VIRTIO HOST (VHOST) | 9254 | VIRTIO HOST (VHOST) |
| 9253 | M: "Michael S. Tsirkin" <mst@redhat.com> | 9255 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 9254 | L: kvm@vger.kernel.org | 9256 | L: kvm@vger.kernel.org |
| 9257 | L: virtio-dev@lists.oasis-open.org | ||
| 9255 | L: virtualization@lists.linux-foundation.org | 9258 | L: virtualization@lists.linux-foundation.org |
| 9256 | L: netdev@vger.kernel.org | 9259 | L: netdev@vger.kernel.org |
| 9257 | S: Maintained | 9260 | S: Maintained |
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 3 | 1 | VERSION = 3 |
| 2 | PATCHLEVEL = 13 | 2 | PATCHLEVEL = 13 |
| 3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
| 4 | EXTRAVERSION = -rc8 | 4 | EXTRAVERSION = |
| 5 | NAME = One Giant Leap for Frogkind | 5 | NAME = One Giant Leap for Frogkind |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c index 739c3dfc1da2..34d5fd585bbb 100644 --- a/arch/arm/kernel/devtree.c +++ b/arch/arm/kernel/devtree.c | |||
| @@ -171,7 +171,7 @@ void __init arm_dt_init_cpu_maps(void) | |||
| 171 | 171 | ||
| 172 | bool arch_match_cpu_phys_id(int cpu, u64 phys_id) | 172 | bool arch_match_cpu_phys_id(int cpu, u64 phys_id) |
| 173 | { | 173 | { |
| 174 | return (phys_id & MPIDR_HWID_BITMASK) == cpu_logical_map(cpu); | 174 | return phys_id == cpu_logical_map(cpu); |
| 175 | } | 175 | } |
| 176 | 176 | ||
| 177 | static const void * __init arch_get_next_mach(const char *const **match) | 177 | static const void * __init arch_get_next_mach(const char *const **match) |
diff --git a/arch/arm/kernel/perf_event_cpu.c b/arch/arm/kernel/perf_event_cpu.c index d85055cd24ba..20d553c9f5e2 100644 --- a/arch/arm/kernel/perf_event_cpu.c +++ b/arch/arm/kernel/perf_event_cpu.c | |||
| @@ -254,7 +254,7 @@ static int probe_current_pmu(struct arm_pmu *pmu) | |||
| 254 | static int cpu_pmu_device_probe(struct platform_device *pdev) | 254 | static int cpu_pmu_device_probe(struct platform_device *pdev) |
| 255 | { | 255 | { |
| 256 | const struct of_device_id *of_id; | 256 | const struct of_device_id *of_id; |
| 257 | int (*init_fn)(struct arm_pmu *); | 257 | const int (*init_fn)(struct arm_pmu *); |
| 258 | struct device_node *node = pdev->dev.of_node; | 258 | struct device_node *node = pdev->dev.of_node; |
| 259 | struct arm_pmu *pmu; | 259 | struct arm_pmu *pmu; |
| 260 | int ret = -ENODEV; | 260 | int ret = -ENODEV; |
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index 6eda3bf85c52..4636d56af2db 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
| @@ -431,9 +431,10 @@ asmlinkage void __exception do_undefinstr(struct pt_regs *regs) | |||
| 431 | instr2 = __mem_to_opcode_thumb16(instr2); | 431 | instr2 = __mem_to_opcode_thumb16(instr2); |
| 432 | instr = __opcode_thumb32_compose(instr, instr2); | 432 | instr = __opcode_thumb32_compose(instr, instr2); |
| 433 | } | 433 | } |
| 434 | } else if (get_user(instr, (u32 __user *)pc)) { | 434 | } else { |
| 435 | if (get_user(instr, (u32 __user *)pc)) | ||
| 436 | goto die_sig; | ||
| 435 | instr = __mem_to_opcode_arm(instr); | 437 | instr = __mem_to_opcode_arm(instr); |
| 436 | goto die_sig; | ||
| 437 | } | 438 | } |
| 438 | 439 | ||
| 439 | if (call_undef_hook(regs, instr) == 0) | 440 | if (call_undef_hook(regs, instr) == 0) |
diff --git a/arch/arm/mach-highbank/highbank.c b/arch/arm/mach-highbank/highbank.c index bd3bf66ce344..c7de89b263dd 100644 --- a/arch/arm/mach-highbank/highbank.c +++ b/arch/arm/mach-highbank/highbank.c | |||
| @@ -53,6 +53,7 @@ static void __init highbank_scu_map_io(void) | |||
| 53 | 53 | ||
| 54 | static void highbank_l2x0_disable(void) | 54 | static void highbank_l2x0_disable(void) |
| 55 | { | 55 | { |
| 56 | |||
