diff options
author | Nikanth Karthikesan <knikanth@suse.de> | 2010-09-20 02:14:00 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-09-21 11:04:50 -0400 |
commit | 817f2c842d6c38acfd58d20d29ba583ec467ae35 (patch) | |
tree | f1afe7175e0a2b3ecf465f26804ad8c3f6f7d263 | |
parent | 0bc79f7f58f5d0670c776818e38f482555bc27ae (diff) |
Fix various typos of valid in comments
Fix various typos of valid.
Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/char/pcmcia/cm4000_cs.c | 2 | ||||
-rw-r--r-- | drivers/media/video/zoran/zoran_driver.c | 2 | ||||
-rw-r--r-- | drivers/s390/block/dasd_eckd.c | 4 | ||||
-rw-r--r-- | fs/jfs/jfs_logmgr.c | 6 | ||||
-rw-r--r-- | fs/ocfs2/cluster/tcp_internal.h | 2 | ||||
-rw-r--r-- | include/linux/libata.h | 2 |
6 files changed, 8 insertions, 10 deletions
diff --git a/drivers/char/pcmcia/cm4000_cs.c b/drivers/char/pcmcia/cm4000_cs.c index ec73d9f6d9ed..273be76be988 100644 --- a/drivers/char/pcmcia/cm4000_cs.c +++ b/drivers/char/pcmcia/cm4000_cs.c | |||
@@ -1667,7 +1667,7 @@ static int cmm_open(struct inode *inode, struct file *filp) | |||
1667 | /* opening will always block since the | 1667 | /* opening will always block since the |
1668 | * monitor will be started by open, which | 1668 | * monitor will be started by open, which |
1669 | * means we have to wait for ATR becoming | 1669 | * means we have to wait for ATR becoming |
1670 | * vaild = block until valid (or card | 1670 | * valid = block until valid (or card |
1671 | * inserted) | 1671 | * inserted) |
1672 | */ | 1672 | */ |
1673 | if (filp->f_flags & O_NONBLOCK) { | 1673 | if (filp->f_flags & O_NONBLOCK) { |
diff --git a/drivers/media/video/zoran/zoran_driver.c b/drivers/media/video/zoran/zoran_driver.c index 6f89d0a096ea..3c471a4e3e4a 100644 --- a/drivers/media/video/zoran/zoran_driver.c +++ b/drivers/media/video/zoran/zoran_driver.c | |||
@@ -1177,7 +1177,7 @@ static int setup_window(struct zoran_fh *fh, int x, int y, int width, int height | |||
1177 | if (height > BUZ_MAX_HEIGHT) | 1177 | if (height > BUZ_MAX_HEIGHT) |
1178 | height = BUZ_MAX_HEIGHT; | 1178 | height = BUZ_MAX_HEIGHT; |
1179 | 1179 | ||
1180 | /* Check for vaild parameters */ | 1180 | /* Check for invalid parameters */ |
1181 | if (width < BUZ_MIN_WIDTH || height < BUZ_MIN_HEIGHT || | 1181 | if (width < BUZ_MIN_WIDTH || height < BUZ_MIN_HEIGHT || |
1182 | width > BUZ_MAX_WIDTH || height > BUZ_MAX_HEIGHT) { | 1182 | width > BUZ_MAX_WIDTH || height > BUZ_MAX_HEIGHT) { |
1183 | dprintk(1, | 1183 | dprintk(1, |
diff --git a/drivers/s390/block/dasd_eckd.c b/drivers/s390/block/dasd_eckd.c index 66360c24bd48..59b4ecfb967b 100644 --- a/drivers/s390/block/dasd_eckd.c +++ b/drivers/s390/block/dasd_eckd.c | |||
@@ -1190,7 +1190,7 @@ dasd_eckd_check_characteristics(struct dasd_device *device) | |||
1190 | goto out_err2; | 1190 | goto out_err2; |
1191 | } | 1191 | } |
1192 | /* | 1192 | /* |
1193 | * dasd_eckd_vaildate_server is done on the first device that | 1193 | * dasd_eckd_validate_server is done on the first device that |
1194 | * is found for an LCU. All later other devices have to wait | 1194 | * is found for an LCU. All later other devices have to wait |
1195 | * for it, so they will read the correct feature codes. | 1195 | * for it, so they will read the correct feature codes. |
1196 | */ | 1196 | */ |
@@ -1216,7 +1216,7 @@ dasd_eckd_check_characteristics(struct dasd_device *device) | |||
1216 | "Read device characteristic failed, rc=%d", rc); | 1216 | "Read device characteristic failed, rc=%d", rc); |
1217 | goto out_err3; | 1217 | goto out_err3; |
1218 | } | 1218 | } |
1219 | /* find the vaild cylinder size */ | 1219 | /* find the valid cylinder size */ |
1220 | if (private->rdc_data.no_cyl == LV_COMPAT_CYL && | 1220 | if (private->rdc_data.no_cyl == LV_COMPAT_CYL && |
1221 | private->rdc_data.long_no_cyl) | 1221 | private->rdc_data.long_no_cyl) |
1222 | private->real_cyl = private->rdc_data.long_no_cyl; | 1222 | private->real_cyl = private->rdc_data.long_no_cyl; |
diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c index c51af2a14516..e1b8493b9aaa 100644 --- a/fs/jfs/jfs_logmgr.c +++ b/fs/jfs/jfs_logmgr.c | |||
@@ -1010,15 +1010,13 @@ static int lmLogSync(struct jfs_log * log, int hard_sync) | |||
1010 | * option 2 - shutdown file systems | 1010 | * option 2 - shutdown file systems |
1011 | * associated with log ? | 1011 | * associated with log ? |
1012 | * option 3 - extend log ? | 1012 | * option 3 - extend log ? |
1013 | */ | ||
1014 | /* | ||
1015 | * option 4 - second chance | 1013 | * option 4 - second chance |
1016 | * | 1014 | * |
1017 | * mark log wrapped, and continue. | 1015 | * mark log wrapped, and continue. |
1018 | * when all active transactions are completed, | 1016 | * when all active transactions are completed, |
1019 | * mark log vaild for recovery. | 1017 | * mark log valid for recovery. |
1020 | * if crashed during invalid state, log state | 1018 | * if crashed during invalid state, log state |
1021 | * implies invald log, forcing fsck(). | 1019 | * implies invalid log, forcing fsck(). |
1022 | */ | 1020 | */ |
1023 | /* mark log state log wrap in log superblock */ | 1021 | /* mark log state log wrap in log superblock */ |
1024 | /* log->state = LOGWRAP; */ | 1022 | /* log->state = LOGWRAP; */ |
diff --git a/fs/ocfs2/cluster/tcp_internal.h b/fs/ocfs2/cluster/tcp_internal.h index 96fa7ebc530c..15fdbdf9eb4b 100644 --- a/fs/ocfs2/cluster/tcp_internal.h +++ b/fs/ocfs2/cluster/tcp_internal.h | |||
@@ -129,7 +129,7 @@ struct o2net_node { | |||
129 | 129 | ||
130 | struct o2net_sock_container { | 130 | struct o2net_sock_container { |
131 | struct kref sc_kref; | 131 | struct kref sc_kref; |
132 | /* the next two are vaild for the life time of the sc */ | 132 | /* the next two are valid for the life time of the sc */ |
133 | struct socket *sc_sock; | 133 | struct socket *sc_sock; |
134 | struct o2nm_node *sc_node; | 134 | struct o2nm_node *sc_node; |
135 | 135 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index f010f18a0f86..9eee84b24a4c 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -340,7 +340,7 @@ enum { | |||
340 | ATA_EHI_DID_HARDRESET = (1 << 17), /* already soft-reset this port */ | 340 | ATA_EHI_DID_HARDRESET = (1 << 17), /* already soft-reset this port */ |
341 | ATA_EHI_PRINTINFO = (1 << 18), /* print configuration info */ | 341 | ATA_EHI_PRINTINFO = (1 << 18), /* print configuration info */ |
342 | ATA_EHI_SETMODE = (1 << 19), /* configure transfer mode */ | 342 | ATA_EHI_SETMODE = (1 << 19), /* configure transfer mode */ |
343 | ATA_EHI_POST_SETMODE = (1 << 20), /* revaildating after setmode */ | 343 | ATA_EHI_POST_SETMODE = (1 << 20), /* revalidating after setmode */ |
344 | 344 | ||
345 | ATA_EHI_DID_RESET = ATA_EHI_DID_SOFTRESET | ATA_EHI_DID_HARDRESET, | 345 | ATA_EHI_DID_RESET = ATA_EHI_DID_SOFTRESET | ATA_EHI_DID_HARDRESET, |
346 | 346 | ||