diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-08-23 22:06:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-08-25 11:36:19 -0400 |
commit | a2959d67c00a8719d8b0eff9296d2b10eead0e22 (patch) | |
tree | b6074294fc0fb4cacd79334ca3f19f4fd96d3ebc /scripts/kconfig/zconf.l | |
parent | a9f48163bcd9ea20f9e4bc4467946f6726882a9b (diff) | |
download | seabios-a2959d67c00a8719d8b0eff9296d2b10eead0e22.tar.gz |
build: Update kconfig to version in Linux 3.16.
Update kconfig (from Linux v3.13) to the latest version (Linux v3.16).
This copies kconfig from Linux with only the changes necessary to work
with the SeaBIOS build (the equivalent of the earlier SeaBIOS 0da7bfdf
commit) and the changes necessary to always emit symbols (SeaBIOS
b623e7c5 commit).
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/kconfig/zconf.l')
-rw-r--r-- | scripts/kconfig/zconf.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l index 1a9f53e5..6c62d93b 100644 --- a/scripts/kconfig/zconf.l +++ b/scripts/kconfig/zconf.l @@ -27,8 +27,8 @@ static char *text; static int text_size, text_asize; struct buffer { - struct buffer *parent; - YY_BUFFER_STATE state; + struct buffer *parent; + YY_BUFFER_STATE state; }; struct buffer *current_buf; |