diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-28 17:22:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-28 17:22:25 -0400 |
commit | 69c4289449b954f87ce33904bbb1b27dc075dcfa (patch) | |
tree | 281d93b5b3d65e832e2fe8e7ff77d89a7de7539b | |
parent | 76d5b28bbad1c5502a24f94c2beafc468690b2ba (diff) | |
parent | 34df117414d73cb56d128bf7016a4c151f95c313 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull trivial tree updates from Jiri Kosina.
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial:
fat: fix error message for bogus number of directory entries
fat: fix typo s/supeblock/superblock/
ASoC: max9877: Remove unused function declaration
dw2102: don't output spurious blank lines to the kernel log
init: fix Kconfig text
ARM: io: fix comment grammar
ocfs: fix ocfs2_xattr_user_get() argument name
scsi/qla2xxx: Remove erroneous unused macro qla82xx_get_temp_val1()
-rw-r--r-- | arch/arm/include/asm/io.h | 2 | ||||
-rw-r--r-- | drivers/scsi/qla2xxx/qla_nx.h | 1 | ||||
-rw-r--r-- | fs/fat/inode.c | 4 | ||||
-rw-r--r-- | fs/ocfs2/xattr.c | 2 | ||||
-rw-r--r-- | init/Kconfig | 4 | ||||
-rw-r--r-- | sound/soc/codecs/max9877.h | 2 |
6 files changed, 6 insertions, 9 deletions
diff --git a/arch/arm/include/asm/io.h b/arch/arm/include/asm/io.h index 781ef5fe235d..021692c64de3 100644 --- a/arch/arm/include/asm/io.h +++ b/arch/arm/include/asm/io.h | |||
@@ -282,7 +282,7 @@ extern void _memset_io(volatile void __iomem *, int, size_t); | |||
282 | * These perform PCI memory accesses via an ioremap region. They don't | 282 | * These perform PCI memory accesses via an ioremap region. They don't |
283 | * take an address as such, but a cookie. | 283 | * take an address as such, but a cookie. |
284 | * | 284 | * |
285 | * Again, this are defined to perform little endian accesses. See the | 285 | * Again, these are defined to perform little endian accesses. See the |
286 | * IO port primitives for more information. | 286 | * IO port primitives for more information. |
287 | */ | 287 | */ |
288 | #ifndef readl | 288 | #ifndef readl |
diff --git a/drivers/scsi/qla2xxx/qla_nx.h b/drivers/scsi/qla2xxx/qla_nx.h index 59c477883a73..6201dce3553b 100644 --- a/drivers/scsi/qla2xxx/qla_nx.h +++ b/drivers/scsi/qla2xxx/qla_nx.h | |||
@@ -1183,7 +1183,6 @@ static const int MD_MIU_TEST_AGT_RDDATA[] = { 0x410000A8, 0x410000AC, | |||
1183 | #define CRB_NIU_XG_PAUSE_CTL_P1 0x8 | 1183 | #define CRB_NIU_XG_PAUSE_CTL_P1 0x8 |
1184 | 1184 | ||
1185 | #define qla82xx_get_temp_val(x) ((x) >> 16) | 1185 | #define qla82xx_get_temp_val(x) ((x) >> 16) |
1186 | #define qla82xx_get_temp_val1(x) ((x) && 0x0000FFFF) | ||
1187 | #define qla82xx_get_temp_state(x) ((x) & 0xffff) | 1186 | #define qla82xx_get_temp_state(x) ((x) & 0xffff) |
1188 | #define qla82xx_encode_temp(val, state) (((val) << 16) | (state)) | 1187 | #define qla82xx_encode_temp(val, state) (((val) << 16) | (state)) |
1189 | 1188 | ||
diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 3bcf57925dca..da04c0298fab 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c | |||
@@ -1589,7 +1589,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, | |||
1589 | 1589 | ||
1590 | /* | 1590 | /* |
1591 | * GFP_KERNEL is ok here, because while we do hold the | 1591 | * GFP_KERNEL is ok here, because while we do hold the |
1592 | * supeblock lock, memory pressure can't call back into | 1592 | * superblock lock, memory pressure can't call back into |
1593 | * the filesystem, since we're only just about to mount | 1593 | * the filesystem, since we're only just about to mount |
1594 | * it and have no inodes etc active! | 1594 | * it and have no inodes etc active! |
1595 | */ | 1595 | */ |
@@ -1726,7 +1726,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, | |||
1726 | sbi->dir_entries = bpb.fat_dir_entries; | 1726 | sbi->dir_entries = bpb.fat_dir_entries; |
1727 | if (sbi->dir_entries & (sbi->dir_per_block - 1)) { | 1727 | if (sbi->dir_entries & (sbi->dir_per_block - 1)) { |
1728 | if (!silent) | 1728 | if (!silent) |
1729 | fat_msg(sb, KERN_ERR, "bogus directory-entries per block" | 1729 | fat_msg(sb, KERN_ERR, "bogus number of directory entries" |
1730 | " (%u)", sbi->dir_entries); | 1730 | " (%u)", sbi->dir_entries); |
1731 | goto out_invalid; | 1731 | goto out_invalid; |
1732 | } | 1732 | } |
diff --git a/fs/ocfs2/xattr.c b/fs/ocfs2/xattr.c index d2053853951e..5bb44f7a78ee 100644 --- a/fs/ocfs2/xattr.c +++ b/fs/ocfs2/xattr.c | |||
@@ -7344,7 +7344,7 @@ const struct xattr_handler ocfs2_xattr_trusted_handler = { | |||
7344 | * 'user' attributes support | 7344 | * 'user' attributes support |
7345 | */ | 7345 | */ |
7346 | static int ocfs2_xattr_user_get(const struct xattr_handler *handler, | 7346 | static int ocfs2_xattr_user_get(const struct xattr_handler *handler, |
7347 | struct dentry *unusde, struct inode *inode, | 7347 | struct dentry *unused, struct inode *inode, |
7348 | const char *name, void *buffer, size_t size) | 7348 | const char *name, void *buffer, size_t size) |
7349 | { | 7349 | { |
7350 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); | 7350 | struct ocfs2_super *osb = OCFS2_SB(inode->i_sb); |
diff --git a/init/Kconfig b/init/Kconfig index 504057925ee9..46f817abff0e 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
@@ -852,8 +852,8 @@ config LOG_CPU_MAX_BUF_SHIFT | |||
852 | used as it forces an exact (power of two) size of the ring buffer. | 852 | used as it forces an exact (power of two) size of the ring buffer. |
853 | 853 | ||
854 | The number of possible CPUs is used for this computation ignoring | 854 | The number of possible CPUs is used for this computation ignoring |
855 | hotplugging making the compuation optimal for the the worst case | 855 | hotplugging making the computation optimal for the worst case |
856 | scenerio while allowing a simple algorithm to be used from bootup. | 856 | scenario while allowing a simple algorithm to be used from bootup. |
857 | 857 | ||
858 | Examples shift values and their meaning: | 858 | Examples shift values and their meaning: |
859 | 17 => 128 KB for each CPU | 859 | 17 => 128 KB for each CPU |
diff --git a/sound/soc/codecs/max9877.h b/sound/soc/codecs/max9877.h index 6da72290ac58..368343f29dd0 100644 --- a/sound/soc/codecs/max9877.h +++ b/sound/soc/codecs/max9877.h | |||
@@ -32,6 +32,4 @@ | |||
32 | #define MAX9877_BYPASS (1 << 6) | 32 | #define MAX9877_BYPASS (1 << 6) |
33 | #define MAX9877_SHDN (1 << 7) | 33 | #define MAX9877_SHDN (1 << 7) |
34 | 34 | ||
35 | extern int max9877_add_controls(struct snd_soc_codec *codec); | ||
36 | |||
37 | #endif | 35 | #endif |