From fe85ff47611d91a80223adc48d251bf555913a1b Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 4 Apr 2013 15:23:22 +0200 Subject: treewide: Fix typo seperate -> separate Signed-off-by: Sascha Hauer --- arch/arm/cpu/cpuinfo.c | 2 +- common/globalvar.c | 4 ++-- common/hush.c | 2 +- drivers/mci/imx.c | 2 +- include/globalvar.h | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arch/arm/cpu/cpuinfo.c b/arch/arm/cpu/cpuinfo.c index 3c8fe4147f..8aea4b472d 100644 --- a/arch/arm/cpu/cpuinfo.c +++ b/arch/arm/cpu/cpuinfo.c @@ -155,7 +155,7 @@ static int do_cpuinfo(int argc, char *argv[]) implementer, architecture); if (cache & (1 << 24)) { - /* seperate I/D cache */ + /* separate I/D cache */ printf("I-cache: "); decode_cache(cache & 0xfff); printf("D-cache: "); diff --git a/common/globalvar.c b/common/globalvar.c index a8aaa72553..abcd881adf 100644 --- a/common/globalvar.c +++ b/common/globalvar.c @@ -22,7 +22,7 @@ int globalvar_add(const char *name, * get a concatenated string of all globalvars beginning with 'match'. * This adds whitespaces between the different globalvars */ -char *globalvar_get_match(const char *match, const char *seperator) +char *globalvar_get_match(const char *match, const char *separator) { char *val = NULL; struct param_d *param; @@ -31,7 +31,7 @@ char *globalvar_get_match(const char *match, const char *seperator) if (!strncmp(match, param->name, strlen(match))) { const char *p = dev_get_param(&global_device, param->name); if (val) { - char *new = asprintf("%s%s%s", val, seperator, p); + char *new = asprintf("%s%s%s", val, separator, p); free(val); val = new; } else { diff --git a/common/hush.c b/common/hush.c index b5e111a019..a3235ba19f 100644 --- a/common/hush.c +++ b/common/hush.c @@ -1959,7 +1959,7 @@ BAREBOX_CMD_START(getopt) BAREBOX_CMD_END #endif -BAREBOX_MAGICVAR(PATH, "colon seperated list of pathes to search for executables"); +BAREBOX_MAGICVAR(PATH, "colon separated list of pathes to search for executables"); #ifdef CONFIG_HUSH_FANCY_PROMPT BAREBOX_MAGICVAR(PS1, "hush prompt"); #endif diff --git a/drivers/mci/imx.c b/drivers/mci/imx.c index c98596434e..2bf48eb1d3 100644 --- a/drivers/mci/imx.c +++ b/drivers/mci/imx.c @@ -2,7 +2,7 @@ * This is a driver for the SDHC controller found in Freescale MX2/MX3 * SoCs. It is basically the same hardware as found on MX1 (imxmmc.c). * Unlike the hardware found on MX1, this hardware just works and does - * not need all the quirks found in imxmmc.c, hence the seperate driver. + * not need all the quirks found in imxmmc.c, hence the separate driver. * * Copyright (C) 2009 Ilya Yanok, * Copyright (C) 2008 Sascha Hauer, Pengutronix diff --git a/include/globalvar.h b/include/globalvar.h index ddf885f18e..e3098bc403 100644 --- a/include/globalvar.h +++ b/include/globalvar.h @@ -8,7 +8,7 @@ int globalvar_add(const char *name, int (*set)(struct device_d *dev, struct param_d *p, const char *val), const char *(*get)(struct device_d *, struct param_d *p), unsigned long flags); -char *globalvar_get_match(const char *match, const char *seperator); +char *globalvar_get_match(const char *match, const char *separator); void globalvar_set_match(const char *match, const char *val); #else static inline int globalvar_add_simple(const char *name) @@ -24,7 +24,7 @@ static inline int globalvar_add(const char *name, return 0; } -static inline char *globalvar_get_match(const char *match, const char *seperator) +static inline char *globalvar_get_match(const char *match, const char *separator) { return NULL; } -- cgit v1.2.3