forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'akpm' (patches from Andrew)
Merge updates from Andrew Morton: - various misc bits - most of MM (quite a lot of MM material is awaiting the merge of linux-next dependencies) - kasan - printk updates - procfs updates - MAINTAINERS - /lib updates - checkpatch updates * emailed patches from Andrew Morton <[email protected]>: (123 commits) init: reduce rootwait polling interval time to 5ms binfmt_elf: use vmalloc() for allocation of vma_filesz checkpatch: don't emit unified-diff error for rename-only patches checkpatch: don't check c99 types like uint8_t under tools checkpatch: avoid multiple line dereferences checkpatch: don't check .pl files, improve absolute path commit log test scripts/checkpatch.pl: fix spelling checkpatch: don't try to get maintained status when --no-tree is given lib/ida: document locking requirements a bit better lib/rbtree.c: fix typo in comment of ____rb_erase_color lib/Kconfig.debug: make CONFIG_STRICT_DEVMEM depend on CONFIG_DEVMEM MAINTAINERS: add drm and drm/i915 irc channels MAINTAINERS: add "C:" for URI for chat where developers hang out MAINTAINERS: add drm and drm/i915 bug filing info MAINTAINERS: add "B:" for URI where to file bugs get_maintainer: look for arbitrary letter prefixes in sections printk: add Kconfig option to set default console loglevel printk/sound: handle more message headers printk/btrfs: handle more message headers printk/kdb: handle more message headers ...
- Loading branch information
Showing
113 changed files
with
1,550 additions
and
1,041 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,10 @@ Descriptions of section entries: | |
These reviewers should be CCed on patches. | ||
L: Mailing list that is relevant to this area | ||
W: Web-page with status/info | ||
B: URI for where to file bugs. A web-page with detailed bug | ||
filing info, a direct bug tracker link, or a mailto: URI. | ||
C: URI for chat protocol, server and channel where developers | ||
usually hang out, for example irc://server/channel. | ||
Q: Patchwork web based patch tracking system site | ||
T: SCM tree type and location. | ||
Type is one of: git, hg, quilt, stgit, topgit | ||
|
@@ -4024,6 +4028,8 @@ DRM DRIVERS | |
M: David Airlie <[email protected]> | ||
L: [email protected] | ||
T: git git://people.freedesktop.org/~airlied/linux | ||
B: https://bugs.freedesktop.org/ | ||
C: irc://chat.freenode.net/dri-devel | ||
S: Maintained | ||
F: drivers/gpu/drm/ | ||
F: drivers/gpu/vga/ | ||
|
@@ -4076,6 +4082,8 @@ M: Jani Nikula <[email protected]> | |
L: [email protected] | ||
L: [email protected] | ||
W: https://01.org/linuxgraphics/ | ||
B: https://01.org/linuxgraphics/documentation/how-report-bugs | ||
C: irc://chat.freenode.net/intel-gfx | ||
Q: http://patchwork.freedesktop.org/project/intel-gfx/ | ||
T: git git://anongit.freedesktop.org/drm-intel | ||
S: Supported | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ config NO_IOPORT_MAP | |
def_bool y | ||
|
||
config NO_DMA | ||
def_bool y | ||
def_bool n | ||
|
||
config HZ | ||
int | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef _ASM_M32R_DMA_MAPPING_H | ||
#define _ASM_M32R_DMA_MAPPING_H | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/types.h> | ||
#include <linux/mm.h> | ||
#include <linux/scatterlist.h> | ||
#include <linux/dma-debug.h> | ||
#include <linux/io.h> | ||
|
||
#define DMA_ERROR_CODE (~(dma_addr_t)0x0) | ||
|
||
static inline struct dma_map_ops *get_dma_ops(struct device *dev) | ||
{ | ||
if (dev && dev->archdata.dma_ops) | ||
return dev->archdata.dma_ops; | ||
return &dma_noop_ops; | ||
} | ||
|
||
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size, | ||
enum dma_data_direction direction) | ||
{ | ||
} | ||
|
||
static inline bool dma_capable(struct device *dev, dma_addr_t addr, size_t size) | ||
{ | ||
if (!dev->dma_mask) | ||
return false; | ||
return addr + size - 1 <= *dev->dma_mask; | ||
} | ||
|
||
#endif /* _ASM_M32R_DMA_MAPPING_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.