diff options
author | Tom Rini <trini@konsulko.com> | 2020-07-05 18:03:32 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-05 18:03:32 -0400 |
commit | df3d0a3f95dd9109b889c5411204f133451b7a7e (patch) | |
tree | 7d54c64d08db45d62e941e3697e1c691dec7ebba /lib | |
parent | 785195941b0746ac987a0ca501dae3e570b9f042 (diff) | |
parent | c57383b0c22bd313c9511eeb2fd6702adbcfe030 (diff) | |
download | u-boot-df3d0a3f95dd9109b889c5411204f133451b7a7e.tar.gz |
Merge branch '2020-07-01-kconfig-etc-updates' into next
- Resync Kconfiglib with the v14.1.0 release.
- Re-sync our <linux/compiler*h> files with v5.7-rc5 from upstream.
- Fully resync checkpatch.pl with v5.7 release.
To safely to all of the above, we have a few bugfixes about functions
that need a 'static inline' but weren't. We also stop setting
CROSS_COMPILE in arch/*/config.mk. Finally, with the above changes
boards can now opt-in to optimizing inlining and we do this for the
socfpga stratix10 platform for space savings.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vsprintf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index de9ef902b9..9dc96c81c6 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -26,8 +26,6 @@ #include <linux/types.h> #include <linux/string.h> -#define noinline __attribute__((noinline)) - /* we use this so that we can do without the ctype library */ #define is_digit(c) ((c) >= '0' && (c) <= '9') |