From: Christian Lamparter Date: Mon, 4 Mar 2019 11:53:02 +0000 (+0100) Subject: carl9170 firmware: config: fix missing lkc_proto.h update X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=commitdiff_plain;h=054ae41a2b3a7b0210558935f520a58d8ccea1a0 carl9170 firmware: config: fix missing lkc_proto.h update Commit: 2396dc74a1e0 ("kconfig: allow all config targets to write auto.conf if missing") included a hunk for lkc_proto.h that was dropped. Signed-off-by: Christian Lamparter --- diff --git a/config/lkc_proto.h b/config/lkc_proto.h index e1dcbab..86c2675 100644 --- a/config/lkc_proto.h +++ b/config/lkc_proto.h @@ -7,7 +7,7 @@ int conf_read(const char *name); int conf_read_simple(const char *name, int); int conf_write_defconfig(const char *name); int conf_write(const char *name); -int conf_write_autoconf(); +int conf_write_autoconf(int overwrite); bool conf_get_changed(void); void conf_set_changed_callback(void (*fn)(void)); void conf_set_message_callback(void (*fn)(const char *s));