Fix typos, most reported by "codespell arch/arc". Only touches comments, no code changes. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Signed-off-by: Vineet Gupta <vgupta@kernel.org>
15 lines
297 B
C
15 lines
297 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
|
|
*/
|
|
|
|
#ifndef __ARC_ASM_SHMPARAM_H
|
|
#define __ARC_ASM_SHMPARAM_H
|
|
|
|
/* Handle up to 2 cache bins */
|
|
#define SHMLBA (2 * PAGE_SIZE)
|
|
|
|
/* Enforce SHMLBA in shmat */
|
|
#define __ARCH_FORCE_SHMLBA
|
|
|
|
#endif
|