mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
s390/cio: Correct some typos in comments
Fixed some confusing typos that were currently identified with codespell, the details are as follows: -in the code comments: drivers/s390/cio/chsc.c:379: EBCIDC ==> EBCDIC drivers/s390/cio/cio.h:22: sublass ==> subclass drivers/s390/cio/cmf.c:49: exended ==> extended drivers/s390/cio/cmf.c:138: sinlge ==> single drivers/s390/cio/cmf.c:1230: Reenable ==> Re-enable Signed-off-by: Shen Lichuan <shenlichuan@vivo.com> Link: https://lore.kernel.org/r/20240929080353.11690-1-shenlichuan@vivo.com Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
This commit is contained in:
parent
e9ab044906
commit
bf017eed75
3 changed files with 5 additions and 5 deletions
|
|
@ -376,7 +376,7 @@ struct lir {
|
|||
#define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
|
||||
#define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
|
||||
|
||||
/* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
|
||||
/* Copy EBCDIC text, convert to ASCII and optionally add delimiter. */
|
||||
static char *store_ebcdic(char *dest, const char *src, unsigned long len,
|
||||
char delim)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ struct pmcw {
|
|||
u32 intparm; /* interruption parameter */
|
||||
u32 qf : 1; /* qdio facility */
|
||||
u32 w : 1;
|
||||
u32 isc : 3; /* interruption sublass */
|
||||
u32 isc : 3; /* interruption subclass */
|
||||
u32 res5 : 3; /* reserved zeros */
|
||||
u32 ena : 1; /* enabled */
|
||||
u32 lm : 2; /* limit mode */
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
/* indices for READCMB */
|
||||
enum cmb_index {
|
||||
avg_utilization = -1,
|
||||
/* basic and exended format: */
|
||||
/* basic and extended format: */
|
||||
cmb_ssch_rsch_count = 0,
|
||||
cmb_sample_count,
|
||||
cmb_device_connect_time,
|
||||
|
|
@ -135,7 +135,7 @@ static inline u64 time_to_nsec(u32 value)
|
|||
* Users are usually interested in average times,
|
||||
* not accumulated time.
|
||||
* This also helps us with atomicity problems
|
||||
* when reading sinlge values.
|
||||
* when reading single values.
|
||||
*/
|
||||
static inline u64 time_to_avg_nsec(u32 value, u32 count)
|
||||
{
|
||||
|
|
@ -1227,7 +1227,7 @@ int cmf_readall(struct ccw_device *cdev, struct cmbdata *data)
|
|||
return cmbops->readall(cdev, data);
|
||||
}
|
||||
|
||||
/* Reenable cmf when a disconnected device becomes available again. */
|
||||
/* Re-enable cmf when a disconnected device becomes available again. */
|
||||
int cmf_reenable(struct ccw_device *cdev)
|
||||
{
|
||||
cmbops->reset(cdev);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue