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

Commit f8065813 authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] Move HZ definition into Kconfig



Move the HZ definition into Kconfig, and set appropriate defaults
for platforms.  Remove mostly empty asm/arch/param.h include file.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent ec1248e7
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -434,6 +434,13 @@ config NO_IDLE_HZ
	  Currently at least OMAP, PXA2xx and SA11x0 platforms are known
	  to have accurate timekeeping with dynamic tick.

config HZ
	int
	default 128 if ARCH_L7200
	default 200 if ARCH_EBSA110 || ARCH_S3C2410
	default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER_HZ != 0
	default 100

config AEABI
	bool "Use the ARM EABI to compile the kernel"
	help
+0 −15
Original line number Diff line number Diff line
/*
 *  linux/include/asm-arm/arch-aaec2000/param.h
 *
 *  Copyright (c) 2005 Nicolas Bellido Y Ortega
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 */

#ifndef __ASM_ARCH_PARAM_H
#define __ASM_ARCH_PARAM_H

#endif /* __ASM_ARCH_PARAM_H */
+0 −28
Original line number Diff line number Diff line
/*
 * include/asm-arm/arch-at91rm9200/param.h
 *
 *  Copyright (C) 2003 SAN People
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef __ASM_ARCH_PARAM_H
#define __ASM_ARCH_PARAM_H

/*
 * We use default params
 */

#endif
+0 −5
Original line number Diff line number Diff line
/*
 *  linux/include/asm-arm/arch-cl7500/param.h
 *
 * Copyright (C) 1999 Nexus Electronics Ltd
 */
+0 −19
Original line number Diff line number Diff line
/*
 *  linux/include/asm-arm/arch-clps711x/param.h
 *
 *  Copyright (C) 2000 Deep Blue Solutions Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
Loading