Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc/eeh: Fix spelling of the word "auxillary" and update comment

Fix spelling of the word "auxillary" in arch/powerpc/kernel/eeh_pe.c
and arch/powerpc/include/asm/eeh.h.

Also update the eeh_set_pe_aux_size() comment to include the units.

Signed-off-by: Ghanshyam Agrawal <ghanshyam1898@gmail.com>
[mpe: Squash into one commit]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/2ab034609285b21c309cd8ab26c937c846d37ee7.1703756365.git.ghanshyam1898@gmail.com

authored by

Ghanshyam Agrawal and committed by
Michael Ellerman
39434af1 bc8744c6

+4 -4
+1 -1
arch/powerpc/include/asm/eeh.h
··· 82 82 int false_positives; /* Times of reported #ff's */ 83 83 atomic_t pass_dev_cnt; /* Count of passed through devs */ 84 84 struct eeh_pe *parent; /* Parent PE */ 85 - void *data; /* PE auxillary data */ 85 + void *data; /* PE auxiliary data */ 86 86 struct list_head child_list; /* List of PEs below this PE */ 87 87 struct list_head child; /* Memb. child_list/eeh_phb_pe */ 88 88 struct list_head edevs; /* List of eeh_dev in this PE */
+3 -3
arch/powerpc/kernel/eeh_pe.c
··· 24 24 static LIST_HEAD(eeh_phb_pe); 25 25 26 26 /** 27 - * eeh_set_pe_aux_size - Set PE auxillary data size 28 - * @size: PE auxillary data size 27 + * eeh_set_pe_aux_size - Set PE auxiliary data size 28 + * @size: PE auxiliary data size in bytes 29 29 * 30 - * Set PE auxillary data size 30 + * Set PE auxiliary data size. 31 31 */ 32 32 void eeh_set_pe_aux_size(int size) 33 33 {