Skip to content

Commit 32fd3d4

Browse files
committed
Merge tag 'for-linus-20150724' of git://git.infradead.org/linux-mtd
Pull MTD fixes from Brian Norris: "Two trivial updates. I meant to send these much earlier, but I've been preoccupied. - Add MAINTAINERS entry for diskonchip g3 driver - Fix an overlooked conflict in bitfield value assignments The latter update is a bit overdue, but there's no reason to wait any longer" * tag 'for-linus-20150724' of git://git.infradead.org/linux-mtd: mtd: nand: Fix NAND_USE_BOUNCE_BUFFER flag conflict MAINTAINERS: mtd: docg3: add docg3 maintainer
2 parents 33b4017 + 5f867db commit 32fd3d4

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

MAINTAINERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6838,6 +6838,12 @@ T: git git://linuxtv.org/anttip/media_tree.git
68386838
S: Maintained
68396839
F: drivers/media/usb/msi2500/
68406840

6841+
MSYSTEMS DISKONCHIP G3 MTD DRIVER
6842+
M: Robert Jarzmik <[email protected]>
6843+
6844+
S: Maintained
6845+
F: drivers/mtd/devices/docg3*
6846+
68416847
MT9M032 APTINA SENSOR DRIVER
68426848
M: Laurent Pinchart <[email protected]>
68436849

include/linux/mtd/nand.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,18 +177,18 @@ typedef enum {
177177
#define NAND_OWN_BUFFERS 0x00020000
178178
/* Chip may not exist, so silence any errors in scan */
179179
#define NAND_SCAN_SILENT_NODEV 0x00040000
180-
/*
181-
* This option could be defined by controller drivers to protect against
182-
* kmap'ed, vmalloc'ed highmem buffers being passed from upper layers
183-
*/
184-
#define NAND_USE_BOUNCE_BUFFER 0x00080000
185180
/*
186181
* Autodetect nand buswidth with readid/onfi.
187182
* This suppose the driver will configure the hardware in 8 bits mode
188183
* when calling nand_scan_ident, and update its configuration
189184
* before calling nand_scan_tail.
190185
*/
191186
#define NAND_BUSWIDTH_AUTO 0x00080000
187+
/*
188+
* This option could be defined by controller drivers to protect against
189+
* kmap'ed, vmalloc'ed highmem buffers being passed from upper layers
190+
*/
191+
#define NAND_USE_BOUNCE_BUFFER 0x00100000
192192

193193
/* Options set by nand scan */
194194
/* Nand scan has allocated controller struct */

0 commit comments

Comments
 (0)