Displaying 3 results from an estimated 3 matches for "of_fdt".
Did you mean:
_fdt
2018 Nov 22
0
[PATCH] x86: fix -Wmissing-prototypes warning
...gt; > > arch/x86/kernel/signal.c:865:17: warning: no previous prototype for ?sys32_x32_rt_sigreturn? [-Wmissing-prototypes]
>
> ......
>
> > > include/linux/ftrace.h | 3 +++
> > > include/linux/kexec.h | 1 +
> > > include/linux/of_fdt.h | 1 +
> > > include/linux/ptrace.h | 1 +
> > > 24 files changed, 55 insertions(+), 3 deletions(-)
> >
> > Breaks 32-bit compilation:
> >
> > ../arch/x86/include/asm/setup.h: Assembler messages:
> > ../arch/x86/include/asm/s...
2018 Nov 22
0
[PATCH] x86: fix -Wmissing-prototypes warning
...rch/x86/kernel/process.c | 3 +++
> arch/x86/kernel/quirks.c | 1 +
> arch/x86/kernel/tracepoint.c | 1 +
> include/linux/efi.h | 2 ++
> include/linux/ftrace.h | 3 +++
> include/linux/kexec.h | 1 +
> include/linux/of_fdt.h | 1 +
> include/linux/ptrace.h | 1 +
> 24 files changed, 55 insertions(+), 3 deletions(-)
Breaks 32-bit compilation:
./arch/x86/include/asm/setup.h: Assembler messages:
./arch/x86/include/asm/setup.h:30: Error: no such instruction: `unsigned long __startup_64(uns...
2020 Apr 28
0
[PATCH 5/5] virtio: Add bounce DMA ops
...le to backend drivers.
> + */
> +
> +#include <linux/virtio.h>
> +#include <linux/io.h>
> +#include <linux/swiotlb.h>
> +#include <linux/dma-mapping.h>
> +#include <linux/of_reserved_mem.h>
> +#include <linux/of.h>
> +#include <linux/of_fdt.h>
> +
> +static phys_addr_t bounce_buf_paddr;
> +static void *bounce_buf_vaddr;
> +static size_t bounce_buf_size;
> +struct swiotlb_pool *virtio_pool;
> +
> +#define VIRTIO_MAX_BOUNCE_SIZE (16*4096)
> +
> +static void *virtio_alloc_coherent(struct device *dev, size_t...