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

Commit b7641d2c authored by H. Peter Anvin's avatar H. Peter Anvin
Browse files

x86-64, syscall: Adjust comment spacing and remove typo



Adjust spacing for comment so that it matches the multiline comment
style used in the rest of the kernel, and remove word duplication.

It is not really clear what version of gcc this refers to, but the
extra & doesn't cause any harm, so there is no reason to remove it.

Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent 052ad274
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -21,7 +21,7 @@ extern void sys_ni_syscall(void);


const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
	/*
	/*
	*Smells like a like a compiler bug -- it doesn't work
	 * Smells like a compiler bug -- it doesn't work
	 * when the & below is removed.
	 * when the & below is removed.
	 */
	 */
	[0 ... __NR_syscall_max] = &sys_ni_syscall,
	[0 ... __NR_syscall_max] = &sys_ni_syscall,