Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72fdbdce authored by Simon Arlott's avatar Simon Arlott Committed by Tony Luck
Browse files

[IA64] spelling fixes: arch/ia64/



Spelling and apostrophe fixes in arch/ia64/.

Signed-off-by: default avatarSimon Arlott <simon@fire.lp0.eu>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 0a3fd051
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -791,7 +791,7 @@ static __init int setup_additional_cpus(char *s)
early_param("additional_cpus", setup_additional_cpus);
early_param("additional_cpus", setup_additional_cpus);


/*
/*
 * cpu_possible_map should be static, it cannot change as cpu's
 * cpu_possible_map should be static, it cannot change as CPUs
 * are onlined, or offlined. The reason is per-cpu data-structures
 * are onlined, or offlined. The reason is per-cpu data-structures
 * are allocated by some modules at init time, and dont expect to
 * are allocated by some modules at init time, and dont expect to
 * do this dynamically on cpu arrival/departure.
 * do this dynamically on cpu arrival/departure.
+1 −1
Original line number Original line Diff line number Diff line
@@ -163,7 +163,7 @@ kdump_init_notifier(struct notifier_block *self, unsigned long val, void *data)
		return NOTIFY_DONE;
		return NOTIFY_DONE;


	nd = (struct ia64_mca_notify_die *)args->err;
	nd = (struct ia64_mca_notify_die *)args->err;
	/* Reason code 1 means machine check rendezous*/
	/* Reason code 1 means machine check rendezvous*/
	if ((val == DIE_INIT_MONARCH_ENTER || val == DIE_INIT_SLAVE_ENTER) &&
	if ((val == DIE_INIT_MONARCH_ENTER || val == DIE_INIT_SLAVE_ENTER) &&
		 nd->sos->rv_rc == 1)
		 nd->sos->rv_rc == 1)
		return NOTIFY_DONE;
		return NOTIFY_DONE;
+3 −3
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@
 *	Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
 *	Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
 *
 *
 * This file contains the code used by various IRQ handling routines:
 * This file contains the code used by various IRQ handling routines:
 * asking for different IRQ's should be done through these routines
 * asking for different IRQs should be done through these routines
 * instead of just grabbing them. Thus setups with different IRQ numbers
 * instead of just grabbing them. Thus setups with different IRQ numbers
 * shouldn't result in any weird surprises, and installing new handlers
 * shouldn't result in any weird surprises, and installing new handlers
 * should be easier.
 * should be easier.
@@ -12,7 +12,7 @@
 * Copyright (C) Ashok Raj<ashok.raj@intel.com>, Intel Corporation 2004
 * Copyright (C) Ashok Raj<ashok.raj@intel.com>, Intel Corporation 2004
 *
 *
 * 4/14/2004: Added code to handle cpu migration and do safe irq
 * 4/14/2004: Added code to handle cpu migration and do safe irq
 *			migration without lossing interrupts for iosapic
 *			migration without losing interrupts for iosapic
 *			architecture.
 *			architecture.
 */
 */


@@ -190,7 +190,7 @@ void fixup_irqs(void)
	}
	}


	/*
	/*
	 * Phase 1: Locate irq's bound to this cpu and
	 * Phase 1: Locate IRQs bound to this cpu and
	 * relocate them for cpu removal.
	 * relocate them for cpu removal.
	 */
	 */
	migrate_irqs();
	migrate_irqs();
+1 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ lsapic_noop_startup (unsigned int irq)
static void
static void
lsapic_noop (unsigned int irq)
lsapic_noop (unsigned int irq)
{
{
	/* nuthing to do... */
	/* nothing to do... */
}
}


static int lsapic_retrigger(unsigned int irq)
static int lsapic_retrigger(unsigned int irq)
+3 −3
Original line number Original line Diff line number Diff line
@@ -151,12 +151,12 @@ static uint __kprobes is_cmp_ctype_unc_inst(uint template, uint slot,


	cmp_inst.l = kprobe_inst;
	cmp_inst.l = kprobe_inst;
	if ((cmp_inst.f.x2 == 0) || (cmp_inst.f.x2 == 1)) {
	if ((cmp_inst.f.x2 == 0) || (cmp_inst.f.x2 == 1)) {
		/* Integere compare - Register Register (A6 type)*/
		/* Integer compare - Register Register (A6 type)*/
		if ((cmp_inst.f.tb == 0) && (cmp_inst.f.ta == 0)
		if ((cmp_inst.f.tb == 0) && (cmp_inst.f.ta == 0)
				&&(cmp_inst.f.c == 1))
				&&(cmp_inst.f.c == 1))
			ctype_unc = 1;
			ctype_unc = 1;
	} else if ((cmp_inst.f.x2 == 2)||(cmp_inst.f.x2 == 3)) {
	} else if ((cmp_inst.f.x2 == 2)||(cmp_inst.f.x2 == 3)) {
		/* Integere compare - Immediate Register (A8 type)*/
		/* Integer compare - Immediate Register (A8 type)*/
		if ((cmp_inst.f.ta == 0) &&(cmp_inst.f.c == 1))
		if ((cmp_inst.f.ta == 0) &&(cmp_inst.f.c == 1))
			ctype_unc = 1;
			ctype_unc = 1;
	}
	}
@@ -954,7 +954,7 @@ int __kprobes setjmp_pre_handler(struct kprobe *p, struct pt_regs *regs)
	/*
	/*
	 * Callee owns the argument space and could overwrite it, eg
	 * Callee owns the argument space and could overwrite it, eg
	 * tail call optimization. So to be absolutely safe
	 * tail call optimization. So to be absolutely safe
	 * we save the argument space before transfering the control
	 * we save the argument space before transferring the control
	 * to instrumented jprobe function which runs in
	 * to instrumented jprobe function which runs in
	 * the process context
	 * the process context
	 */
	 */
Loading