mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
606da4826b
The Kconfig-Option OMAP4_ERRATA_I688 is never visible due to a contradiction in it's dependencies. The option requires ARCH_MULTIPLATFORM to be 'disabled'. However, an enclosing menu requires either ARCH_MULTI_V6 or ARCH_MULTI_V7 to be enabled. These options inherit a dependency from an enclosing menu, that requires ARCH_MULTIPLATFORM to be 'enabled'. This is a contradiction and made this option also unavailable for non-multiplatform configurations. Since there are no selects on OMAP4_ERRATA_I688, which would ignore dependencies, the code related to that option is dead and can be removed. This (logical) defect has been found with the undertaker tool. (https://undertaker.cs.fau.de) Signed-off-by: Stefan Hengelein <stefan.hengelein@fau.de> Acked-by: Santosh Shilimkar <ssantosh@kernel.org> Signed-off-by: Tony Lindgren <tony@atomide.com>
34 lines
805 B
C
34 lines
805 B
C
/*
|
|
* linux/arch/arm/mach-omap2/common.c
|
|
*
|
|
* Code common to all OMAP2+ machines.
|
|
*
|
|
* Copyright (C) 2009 Texas Instruments
|
|
* Copyright (C) 2010 Nokia Corporation
|
|
* Tony Lindgren <tony@atomide.com>
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
|
|
#include "common.h"
|
|
#include "omap-secure.h"
|
|
|
|
/*
|
|
* Stub function for OMAP2 so that common files
|
|
* continue to build when custom builds are used
|
|
*/
|
|
int __weak omap_secure_ram_reserve_memblock(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void __init omap_reserve(void)
|
|
{
|
|
omap_secure_ram_reserve_memblock();
|
|
}
|