diff options
author | Samuel Holland <samuel@sholland.org> | 2019-12-08 23:40:04 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2019-12-19 22:28:09 -0600 |
commit | c0a24f212630c322ffda6ff503c3f05cf7b4dd50 (patch) | |
tree | 7a39427ed70a9c9cc898fba042e849f79b40fee6 /system/easy-kernel/ast-endianness.patch | |
parent | 4f574cf5149b940d297b977a4f7b8073aa40cf32 (diff) | |
download | packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.gz packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.bz2 packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.xz packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.zip |
system/easy-kernel: bump to 5.4.5
Just an olddefconfig.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'system/easy-kernel/ast-endianness.patch')
-rw-r--r-- | system/easy-kernel/ast-endianness.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/system/easy-kernel/ast-endianness.patch b/system/easy-kernel/ast-endianness.patch deleted file mode 100644 index 03ee209b8..000000000 --- a/system/easy-kernel/ast-endianness.patch +++ /dev/null @@ -1,38 +0,0 @@ -Author: Elizabeth Myers <elizabeth@adelielinux.org> - -I'm certain this fix is wrong fwiw, but it's the best I could come with - ---- linux-4.14/drivers/gpu/drm/ast/ast_fb.c.old 2017-11-12 12:46:13.000000000 -0600 -+++ linux-4.14/drivers/gpu/drm/ast/ast_fb.c 2018-06-30 20:54:43.530000000 -0500 -@@ -109,9 +109,30 @@ - unmap = true; - } - for (i = y; i <= y2; i++) { -+ int copy_width = x2 - x + 1; - /* assume equal stride for now */ - src_offset = dst_offset = i * afbdev->afb.base.pitches[0] + (x * bpp); -- memcpy_toio(bo->kmap.virtual + src_offset, afbdev->sysram + src_offset, (x2 - x + 1) * bpp); -+ switch (bpp) { -+ case 4: -+ while (copy_width) { -+ iowrite32(*(u32 *)(afbdev->sysram + src_offset), -+ bo->kmap.virtual + src_offset); -+ src_offset += 4; -+ copy_width--; -+ } -+ break; -+ case 2: -+ while (copy_width) { -+ iowrite16(*(u16 *)(afbdev->sysram + src_offset), -+ bo->kmap.virtual + src_offset); -+ src_offset += 2; -+ copy_width--; -+ } -+ break; -+ default: -+ memcpy_toio(bo->kmap.virtual + src_offset, afbdev->sysram + src_offset, (x2 - x + 1) * bpp); -+ break; -+ } - - } - if (unmap) |