mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
Introduce include/system-constants.h
We have a number of CONFIG symbols today that are of the form: SYM1 = CONST1 + CONST2 or other static math operations (shifts, etc). The issue is that by moving these to Kconfig we no longer have the ability to calculate these values, so they become less flexible and useful. It's also the case that sometimes a platform will just define SYM1 directly or perform a slightly different set of calculations. We introduce this header now to have a place to start to handle these cases. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
be131adb8d
commit
42c6141d37
1 changed files with 6 additions and 0 deletions
6
include/system-constants.h
Normal file
6
include/system-constants.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
|
||||
#ifndef __SYSTEM_CONSTANTS_H__
|
||||
#define __SYSTEM_CONSTANTS_H__
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue