Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'regmap-fix-3.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap

Pull regmap fixes from Mark Brown:
"One more oversight in the debugfs code was reported and fixed, plus a
documentation fix."

* tag 'regmap-fix-3.8-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap:
regmap: fix small typo in regmap_bulk_write comment
regmap: debugfs: Fix seeking from the cache

+1 -3
-2
drivers/base/regmap/regmap-debugfs.c
··· 121 121 c->max = p - 1; 122 122 list_add_tail(&c->list, 123 123 &map->debugfs_off_cache); 124 - } else { 125 - return base; 126 124 } 127 125 128 126 /*
+1 -1
drivers/base/regmap/regmap.c
··· 1106 1106 * @val_count: Number of registers to write 1107 1107 * 1108 1108 * This function is intended to be used for writing a large block of 1109 - * data to be device either in single transfer or multiple transfer. 1109 + * data to the device either in single transfer or multiple transfer. 1110 1110 * 1111 1111 * A value of zero will be returned on success, a negative errno will 1112 1112 * be returned in error cases.