mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-05 13:25:20 +02:00

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>
16 lines
297 B
C
16 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
|