summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-01-03 13:02:05 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2022-01-05 09:01:17 +0100
commitdc8c0a9425a7be301e03e77489a25b14e20b383a (patch)
treefd928bb7fc0fa98ad2e1e643a6358a5f99491844 /include
parent1b0679d9b8d58697da9fb563bb3509d29ad43c28 (diff)
downloadbarebox-dc8c0a9425a7be301e03e77489a25b14e20b383a.tar.gz
barebox-dc8c0a9425a7be301e03e77489a25b14e20b383a.tar.xz
parseopt: drop unused, duplicate, parseopt_u16
We always have sizeof(unsigned short) == sizeof(uint16_t), so parseopt_u16() is exactly equivalent to parseopt_hu(). The former is unused anyway, so just drop it. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20220103120205.1728778-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/parseopt.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/parseopt.h b/include/parseopt.h
index 5a40bdc219..a944c3655f 100644
--- a/include/parseopt.h
+++ b/include/parseopt.h
@@ -6,7 +6,6 @@ void parseopt_llu_suffix(const char *options, const char *opt,
void parseopt_b(const char *options, const char *opt, bool *val);
void parseopt_hu(const char *options, const char *opt, unsigned short *val);
-void parseopt_u16(const char *options, const char *opt, uint16_t *val);
void parseopt_str(const char *options, const char *opt, char **val);
#endif /* __PARSEOPT_H__ */