brcm2708: update linux 4.4 patches to latest version
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0543-fixup-fb-Use-basic-types-for-dma-addresses-as-these-.patch
1 From ab3d72ab3a895ece2820f6de879472eafb157c39 Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Mon, 14 Nov 2016 22:05:30 +0000
4 Subject: [PATCH] fixup: fb: Use basic types for dma addresses as these are
5 also included from user code
6
7 ---
8 include/uapi/linux/fb.h | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
10
11 --- a/include/uapi/linux/fb.h
12 +++ b/include/uapi/linux/fb.h
13 @@ -353,8 +353,8 @@ struct fb_copyarea {
14 };
15
16 struct fb_dmacopy {
17 - dma_addr_t dst;
18 - dma_addr_t src;
19 + void *dst;
20 + __u32 src;
21 __u32 length;
22 };
23