s390: Fix misspellings using 'codespell' tool

Signed-off-by: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Hendrik Brueckner 2013-12-13 12:53:42 +01:00 committed by Martin Schwidefsky
parent 1c59a861d6
commit b4a960159e
8 changed files with 10 additions and 10 deletions

View file

@ -336,7 +336,7 @@ typedef void qdio_handler_t(struct ccw_device *, unsigned int, int,
#define QDIO_FLAG_CLEANUP_USING_HALT 0x02 #define QDIO_FLAG_CLEANUP_USING_HALT 0x02
/** /**
* struct qdio_initialize - qdio initalization data * struct qdio_initialize - qdio initialization data
* @cdev: associated ccw device * @cdev: associated ccw device
* @q_format: queue format * @q_format: queue format
* @adapter_name: name for the adapter * @adapter_name: name for the adapter

View file

@ -975,7 +975,7 @@ sie_done:
lctlg %c1,%c1,__LC_USER_ASCE # load primary asce lctlg %c1,%c1,__LC_USER_ASCE # load primary asce
# some program checks are suppressing. C code (e.g. do_protection_exception) # some program checks are suppressing. C code (e.g. do_protection_exception)
# will rewind the PSW by the ILC, which is 4 bytes in case of SIE. Other # will rewind the PSW by the ILC, which is 4 bytes in case of SIE. Other
# instructions beween sie64a and sie_done should not cause program # instructions between sie64a and sie_done should not cause program
# interrupts. So lets use a nop (47 00 00 00) as a landing pad. # interrupts. So lets use a nop (47 00 00 00) as a landing pad.
# See also HANDLE_SIE_INTERCEPT # See also HANDLE_SIE_INTERCEPT
rewind_pad: rewind_pad:

View file

@ -373,7 +373,7 @@ static void __init setup_lowcore(void)
/* /*
* Set up PSW restart to call ipl.c:do_restart(). Copy the relevant * Set up PSW restart to call ipl.c:do_restart(). Copy the relevant
* restart data to the absolute zero lowcore. This is necesary if * restart data to the absolute zero lowcore. This is necessary if
* PSW restart is done on an offline CPU that has lowcore zero. * PSW restart is done on an offline CPU that has lowcore zero.
*/ */
lc->restart_stack = (unsigned long) restart_stack; lc->restart_stack = (unsigned long) restart_stack;

View file

@ -275,7 +275,7 @@ static int handle_io_inst(struct kvm_vcpu *vcpu)
return -EOPNOTSUPP; return -EOPNOTSUPP;
} else { } else {
/* /*
* Set condition code 3 to stop the guest from issueing channel * Set condition code 3 to stop the guest from issuing channel
* I/O instructions. * I/O instructions.
*/ */
kvm_s390_set_psw_cc(vcpu, 3); kvm_s390_set_psw_cc(vcpu, 3);

View file

@ -74,8 +74,8 @@ static size_t copy_in_kernel(size_t count, void __user *to,
/* /*
* Returns kernel address for user virtual address. If the returned address is * Returns kernel address for user virtual address. If the returned address is
* >= -4095 (IS_ERR_VALUE(x) returns true), a fault has occured and the address * >= -4095 (IS_ERR_VALUE(x) returns true), a fault has occurred and the
* contains the (negative) exception code. * address contains the (negative) exception code.
*/ */
#ifdef CONFIG_64BIT #ifdef CONFIG_64BIT

View file

@ -293,7 +293,7 @@ static int gmap_alloc_table(struct gmap *gmap,
* @addr: address in the guest address space * @addr: address in the guest address space
* @len: length of the memory area to unmap * @len: length of the memory area to unmap
* *
* Returns 0 if the unmap succeded, -EINVAL if not. * Returns 0 if the unmap succeeded, -EINVAL if not.
*/ */
int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len) int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len)
{ {
@ -344,7 +344,7 @@ EXPORT_SYMBOL_GPL(gmap_unmap_segment);
* @from: source address in the parent address space * @from: source address in the parent address space
* @to: target address in the guest address space * @to: target address in the guest address space
* *
* Returns 0 if the mmap succeded, -EINVAL or -ENOMEM if not. * Returns 0 if the mmap succeeded, -EINVAL or -ENOMEM if not.
*/ */
int gmap_map_segment(struct gmap *gmap, unsigned long from, int gmap_map_segment(struct gmap *gmap, unsigned long from,
unsigned long to, unsigned long len) unsigned long to, unsigned long len)

View file

@ -3386,7 +3386,7 @@ int dasd_generic_set_offline(struct ccw_device *cdev)
if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) { if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
/* /*
* safe offline allready running * safe offline already running
* could only be called by normal offline so safe_offline flag * could only be called by normal offline so safe_offline flag
* needs to be removed to run normal offline and kill all I/O * needs to be removed to run normal offline and kill all I/O
*/ */

View file

@ -419,7 +419,7 @@ static int xcrb_msg_to_type6_ep11cprb_msgx(struct zcrypt_device *zdev,
replaced by the usage domain for non-management commands only. replaced by the usage domain for non-management commands only.
Therefore we check the first bit of the 'flags' parameter for Therefore we check the first bit of the 'flags' parameter for
management command indication. management command indication.
0 - non managment command 0 - non management command
1 - management command 1 - management command
*/ */
if (!((msg->cprbx.flags & 0x80) == 0x80)) { if (!((msg->cprbx.flags & 0x80) == 0x80)) {