Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
From bac548894cabaa45d05d69a59ffeaaac00b2b7e9 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Elwell <phil@raspberrypi.com>
|
||||
Date: Tue, 27 Oct 2020 12:12:22 +0000
|
||||
Subject: [PATCH 0257/1085] bcm2708_fb: Fix a build warning
|
||||
|
||||
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
||||
---
|
||||
drivers/video/fbdev/bcm2708_fb.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
--- a/drivers/video/fbdev/bcm2708_fb.c
|
||||
+++ b/drivers/video/fbdev/bcm2708_fb.c
|
||||
@@ -693,7 +693,8 @@ static long vc_mem_copy(struct bcm2708_f
|
||||
u8 *q = (u8 *)ioparam->dst + offset;
|
||||
|
||||
dma_memcpy(fb, bus_addr,
|
||||
- INTALIAS_L1L2_NONALLOCATING((dma_addr_t)p), size);
|
||||
+ INTALIAS_L1L2_NONALLOCATING((u32)(uintptr_t)p),
|
||||
+ size);
|
||||
if (copy_to_user(q, buf, s) != 0) {
|
||||
pr_err("[%s]: failed to copy-to-user\n", __func__);
|
||||
rc = -EFAULT;
|
||||
Reference in New Issue
Block a user