* [U-Boot] [PATCH 1/4] Fix spelling of "multiple".
@ 2016-10-24 3:45 Vagrant Cascadian
2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Vagrant Cascadian @ 2016-10-24 3:45 UTC (permalink / raw)
To: u-boot
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
---
fs/ubifs/ubifs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c
index cdc04c6..cc397d6 100644
--- a/fs/ubifs/ubifs.c
+++ b/fs/ubifs/ubifs.c
@@ -854,7 +854,7 @@ int ubifs_read(const char *filename, void *buf, loff_t offset,
*actread = 0;
if (offset & (PAGE_SIZE - 1)) {
- printf("ubifs: Error offset must be a multple of %d\n",
+ printf("ubifs: Error offset must be a multiple of %d\n",
PAGE_SIZE);
return -1;
}
--
2.9.3
^ permalink raw reply related [flat|nested] 13+ messages in thread* [U-Boot] [PATCH 2/4] Fix spelling of "occur". 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian @ 2016-10-24 3:45 ` Vagrant Cascadian 2016-10-24 7:51 ` Angelo Dureghello ` (2 more replies) 2016-10-24 3:45 ` [U-Boot] [PATCH 3/4] Fix spelling of "extended" Vagrant Cascadian ` (3 subsequent siblings) 4 siblings, 3 replies; 13+ messages in thread From: Vagrant Cascadian @ 2016-10-24 3:45 UTC (permalink / raw) To: u-boot Signed-off-by: Vagrant Cascadian <vagrant@debian.org> --- board/sysam/amcore/amcore.c | 2 +- tools/mkimage.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/sysam/amcore/amcore.c b/board/sysam/amcore/amcore.c index b7217c5..77b5000 100644 --- a/board/sysam/amcore/amcore.c +++ b/board/sysam/amcore/amcore.c @@ -93,7 +93,7 @@ phys_size_t initdram(int board_type) out_be32((u32 *)0x00000004, 0xbeaddeed); /* issue AUTOREFRESH */ out_be32(&dc->dacr0, 0x0000b304); - /* let refresh occour */ + /* let refresh occur */ fudelay(1); out_be32(&dc->dacr0, 0x0000b344); diff --git a/tools/mkimage.c b/tools/mkimage.c index 3c594a0..02f88bb 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -88,7 +88,7 @@ static void usage(const char *msg) params.cmdname); fprintf(stderr, " %s [-D dtc_options] [-f fit-image.its|-f auto|-F] [-b <dtb> [-b <dtb>]] fit-image\n" - " <dtb> file is used with -f auto, it may occour multiple times.\n", + " <dtb> file is used with -f auto, it may occur multiple times.\n", params.cmdname); fprintf(stderr, " -D => set all options for device tree compiler\n" -- 2.9.3 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 2/4] Fix spelling of "occur". 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian @ 2016-10-24 7:51 ` Angelo Dureghello 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,2/4] " Tom Rini 2 siblings, 0 replies; 13+ messages in thread From: Angelo Dureghello @ 2016-10-24 7:51 UTC (permalink / raw) To: u-boot Hi Vagrant, On 24/10/2016 05:45, Vagrant Cascadian wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > --- > > board/sysam/amcore/amcore.c | 2 +- > tools/mkimage.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/board/sysam/amcore/amcore.c b/board/sysam/amcore/amcore.c > index b7217c5..77b5000 100644 > --- a/board/sysam/amcore/amcore.c > +++ b/board/sysam/amcore/amcore.c > @@ -93,7 +93,7 @@ phys_size_t initdram(int board_type) > out_be32((u32 *)0x00000004, 0xbeaddeed); > /* issue AUTOREFRESH */ > out_be32(&dc->dacr0, 0x0000b304); > - /* let refresh occour */ > + /* let refresh occur */ > fudelay(1); > > out_be32(&dc->dacr0, 0x0000b344); Acked-by: Angelo Dureghello <angelo@sysam.it> thanks for the fix, Best regards, Angelo Dureghello > diff --git a/tools/mkimage.c b/tools/mkimage.c > index 3c594a0..02f88bb 100644 > --- a/tools/mkimage.c > +++ b/tools/mkimage.c > @@ -88,7 +88,7 @@ static void usage(const char *msg) > params.cmdname); > fprintf(stderr, > " %s [-D dtc_options] [-f fit-image.its|-f auto|-F] [-b <dtb> [-b <dtb>]] fit-image\n" > - " <dtb> file is used with -f auto, it may occour multiple times.\n", > + " <dtb> file is used with -f auto, it may occur multiple times.\n", > params.cmdname); > fprintf(stderr, > " -D => set all options for device tree compiler\n" > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 2/4] Fix spelling of "occur". 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian 2016-10-24 7:51 ` Angelo Dureghello @ 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,2/4] " Tom Rini 2 siblings, 0 replies; 13+ messages in thread From: Simon Glass @ 2016-10-26 16:31 UTC (permalink / raw) To: u-boot On 23 October 2016 at 20:45, Vagrant Cascadian <vagrant@debian.org> wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > --- > > board/sysam/amcore/amcore.c | 2 +- > tools/mkimage.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Simon Glass <sjg@chromium.org> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [U-Boot,2/4] Fix spelling of "occur". 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian 2016-10-24 7:51 ` Angelo Dureghello 2016-10-26 16:31 ` Simon Glass @ 2016-11-02 14:26 ` Tom Rini 2 siblings, 0 replies; 13+ messages in thread From: Tom Rini @ 2016-11-02 14:26 UTC (permalink / raw) To: u-boot On Sun, Oct 23, 2016 at 08:45:17PM -0700, Vagrant Cascadian wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > Acked-by: Angelo Dureghello <angelo@sysam.it> > Reviewed-by: Simon Glass <sjg@chromium.org> Applied to u-boot/master (before v2016.11-rc3), thanks! -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161102/1e25b926/attachment.sig> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 3/4] Fix spelling of "extended". 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian @ 2016-10-24 3:45 ` Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,3/4] " Tom Rini 2016-10-24 3:45 ` [U-Boot] [PATCH 4/4] Fix spelling of "resetting" Vagrant Cascadian ` (2 subsequent siblings) 4 siblings, 2 replies; 13+ messages in thread From: Vagrant Cascadian @ 2016-10-24 3:45 UTC (permalink / raw) To: u-boot Signed-off-by: Vagrant Cascadian <vagrant@debian.org> --- cmd/bootm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bootm.c b/cmd/bootm.c index e02a1c5..083f3d1 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -162,7 +162,7 @@ static char bootm_help_text[] = #endif #if defined(CONFIG_FIT) "\t\nFor the new multi component uImage format (FIT) addresses\n" - "\tmust be extened to include component or configuration unit name:\n" + "\tmust be extended to include component or configuration unit name:\n" "\taddr:<subimg_uname> - direct component image specification\n" "\taddr#<conf_uname> - configuration specification\n" "\tUse iminfo command to get the list of existing component\n" -- 2.9.3 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 3/4] Fix spelling of "extended". 2016-10-24 3:45 ` [U-Boot] [PATCH 3/4] Fix spelling of "extended" Vagrant Cascadian @ 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,3/4] " Tom Rini 1 sibling, 0 replies; 13+ messages in thread From: Simon Glass @ 2016-10-26 16:31 UTC (permalink / raw) To: u-boot On 23 October 2016 at 20:45, Vagrant Cascadian <vagrant@debian.org> wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > --- > > cmd/bootm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Simon Glass <sjg@chromium.org> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [U-Boot,3/4] Fix spelling of "extended". 2016-10-24 3:45 ` [U-Boot] [PATCH 3/4] Fix spelling of "extended" Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass @ 2016-11-02 14:26 ` Tom Rini 1 sibling, 0 replies; 13+ messages in thread From: Tom Rini @ 2016-11-02 14:26 UTC (permalink / raw) To: u-boot On Sun, Oct 23, 2016 at 08:45:18PM -0700, Vagrant Cascadian wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > Reviewed-by: Simon Glass <sjg@chromium.org> Applied to u-boot/master (before v2016.11-rc3), thanks! -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161102/214caf77/attachment.sig> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 4/4] Fix spelling of "resetting". 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian 2016-10-24 3:45 ` [U-Boot] [PATCH 3/4] Fix spelling of "extended" Vagrant Cascadian @ 2016-10-24 3:45 ` Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,4/4] " Tom Rini 2016-10-26 16:31 ` [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,1/4] " Tom Rini 4 siblings, 2 replies; 13+ messages in thread From: Vagrant Cascadian @ 2016-10-24 3:45 UTC (permalink / raw) To: u-boot Cover-Letter: Fixes several spelling errors for the words "resetting", "extended", "occur", and "multiple". Signed-off-by: Vagrant Cascadian <vagrant@debian.org> --- arch/arm/mach-exynos/dmc_init_ddr3.c | 2 +- arch/arm/mach-socfpga/misc.c | 2 +- arch/mips/mach-au1x00/au1x00_usb_ohci.c | 3 ++- arch/powerpc/cpu/mpc5xxx/usb_ohci.c | 3 ++- arch/powerpc/cpu/ppc4xx/usb_ohci.c | 3 ++- drivers/net/fec_mxc.c | 2 +- drivers/usb/host/ohci-hcd.c | 2 +- drivers/usb/host/ohci-s3c24xx.c | 2 +- include/vsprintf.h | 4 ++-- 9 files changed, 13 insertions(+), 10 deletions(-) diff --git a/arch/arm/mach-exynos/dmc_init_ddr3.c b/arch/arm/mach-exynos/dmc_init_ddr3.c index 25a9df9..6a5d26c 100644 --- a/arch/arm/mach-exynos/dmc_init_ddr3.c +++ b/arch/arm/mach-exynos/dmc_init_ddr3.c @@ -618,7 +618,7 @@ int ddr3_mem_ctrl_init(struct mem_timings *mem, int reset) /* * Send NOP, MRS and ZQINIT commands * Sending MRS command will reset the DRAM. We should not be - * reseting the DRAM after resume, this will lead to memory + * resetting the DRAM after resume, this will lead to memory * corruption as DRAM content is lost after DRAM reset */ dmc_config_mrs(mem, &drex0->directcmd); diff --git a/arch/arm/mach-socfpga/misc.c b/arch/arm/mach-socfpga/misc.c index 5cbd8a4..dd6b53b 100644 --- a/arch/arm/mach-socfpga/misc.c +++ b/arch/arm/mach-socfpga/misc.c @@ -362,7 +362,7 @@ int arch_early_init_r(void) * issuing warm reset. The ancient kernel code expects this * value to be written into the register by the bootloader, so * to support that old code, we write it here instead of in the - * reset_cpu() function just before reseting the CPU. + * reset_cpu() function just before resetting the CPU. */ writel(0xae9efebc, &sysmgr_regs->romcodegrp_warmramgrp_enable); diff --git a/arch/mips/mach-au1x00/au1x00_usb_ohci.c b/arch/mips/mach-au1x00/au1x00_usb_ohci.c index 42484e5..088e612 100644 --- a/arch/mips/mach-au1x00/au1x00_usb_ohci.c +++ b/arch/mips/mach-au1x00/au1x00_usb_ohci.c @@ -671,7 +671,8 @@ static void td_submit_job (struct usb_device *dev, unsigned long pipe, void *buf __u32 info = 0; unsigned int toggle = 0; - /* OHCI handles the DATA-toggles itself, we just use the USB-toggle bits for reseting */ + /* OHCI handles the DATA-toggles itself, we just use the + USB-toggle bits for resetting */ if(usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) { toggle = TD_T_TOGGLE; } else { diff --git a/arch/powerpc/cpu/mpc5xxx/usb_ohci.c b/arch/powerpc/cpu/mpc5xxx/usb_ohci.c index b7c1b55..cf36954 100644 --- a/arch/powerpc/cpu/mpc5xxx/usb_ohci.c +++ b/arch/powerpc/cpu/mpc5xxx/usb_ohci.c @@ -670,7 +670,8 @@ static void td_submit_job (struct usb_device *dev, unsigned long pipe, void *buf __u32 info = 0; unsigned int toggle = 0; - /* OHCI handles the DATA-toggles itself, we just use the USB-toggle bits for reseting */ + /* OHCI handles the DATA-toggles itself, we just use the + USB-toggle bits for resetting */ if(usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) { toggle = TD_T_TOGGLE; } else { diff --git a/arch/powerpc/cpu/ppc4xx/usb_ohci.c b/arch/powerpc/cpu/ppc4xx/usb_ohci.c index 65a0675..27423e3 100644 --- a/arch/powerpc/cpu/ppc4xx/usb_ohci.c +++ b/arch/powerpc/cpu/ppc4xx/usb_ohci.c @@ -673,7 +673,8 @@ static void td_submit_job (struct usb_device *dev, unsigned long pipe, void *buf __u32 info = 0; unsigned int toggle = 0; - /* OHCI handles the DATA-toggles itself, we just use the USB-toggle bits for reseting */ + /* OHCI handles the DATA-toggles itself, we just use the + USB-toggle bits for resetting */ if(usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) { toggle = TD_T_TOGGLE; } else { diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 8e3b839..84021ea 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -1024,7 +1024,7 @@ static int fec_probe(bd_t *bd, int dev_id, uint32_t base_addr, start = get_timer(0); while (readl(&fec->eth->ecntrl) & FEC_ECNTRL_RESET) { if (get_timer(start) > (CONFIG_SYS_HZ * 5)) { - printf("FEC MXC: Timeout reseting chip\n"); + printf("FEC MXC: Timeout resetting chip\n"); goto err4; } udelay(10); diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index ccbfc02..bd2d9c3 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c @@ -963,7 +963,7 @@ static void td_submit_job(ohci_t *ohci, struct usb_device *dev, flush_dcache_buffer(buffer, data_len); /* OHCI handles the DATA-toggles itself, we just use the USB-toggle - * bits for reseting */ + * bits for resetting */ if (usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) { toggle = TD_T_TOGGLE; } else { diff --git a/drivers/usb/host/ohci-s3c24xx.c b/drivers/usb/host/ohci-s3c24xx.c index 8bb2275..28b9ab5 100644 --- a/drivers/usb/host/ohci-s3c24xx.c +++ b/drivers/usb/host/ohci-s3c24xx.c @@ -677,7 +677,7 @@ static void td_submit_job(struct usb_device *dev, unsigned long pipe, unsigned int toggle = 0; /* OHCI handles the DATA-toggles itself, we just - use the USB-toggle bits for reseting */ + use the USB-toggle bits for resetting */ if (usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) { toggle = TD_T_TOGGLE; } else { diff --git a/include/vsprintf.h b/include/vsprintf.h index 60e91d1..e38076d 100644 --- a/include/vsprintf.h +++ b/include/vsprintf.h @@ -72,7 +72,7 @@ long trailing_strtoln(const char *str, const char *end); * panic() - Print a message and reset/hang * * Prints a message on the console(s) and then resets. If CONFIG_PANIC_HANG is - * defined, then it will hang instead of reseting. + * defined, then it will hang instead of resetting. * * @param fmt: printf() format string for message, which should not include * \n, followed by arguments @@ -84,7 +84,7 @@ void panic(const char *fmt, ...) * panic_str() - Print a message and reset/hang * * Prints a message on the console(s) and then resets. If CONFIG_PANIC_HANG is - * defined, then it will hang instead of reseting. + * defined, then it will hang instead of resetting. * * This function can be used instead of panic() when your board does not * already use printf(), * to keep code size small. -- 2.9.3 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 4/4] Fix spelling of "resetting". 2016-10-24 3:45 ` [U-Boot] [PATCH 4/4] Fix spelling of "resetting" Vagrant Cascadian @ 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,4/4] " Tom Rini 1 sibling, 0 replies; 13+ messages in thread From: Simon Glass @ 2016-10-26 16:31 UTC (permalink / raw) To: u-boot On 23 October 2016 at 20:45, Vagrant Cascadian <vagrant@debian.org> wrote: > Cover-Letter: Fixes several spelling errors for the words "resetting", > "extended", "occur", and "multiple". > > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > --- > > arch/arm/mach-exynos/dmc_init_ddr3.c | 2 +- > arch/arm/mach-socfpga/misc.c | 2 +- > arch/mips/mach-au1x00/au1x00_usb_ohci.c | 3 ++- > arch/powerpc/cpu/mpc5xxx/usb_ohci.c | 3 ++- > arch/powerpc/cpu/ppc4xx/usb_ohci.c | 3 ++- > drivers/net/fec_mxc.c | 2 +- > drivers/usb/host/ohci-hcd.c | 2 +- > drivers/usb/host/ohci-s3c24xx.c | 2 +- > include/vsprintf.h | 4 ++-- > 9 files changed, 13 insertions(+), 10 deletions(-) Reviewed-by: Simon Glass <sjg@chromium.org> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [U-Boot,4/4] Fix spelling of "resetting". 2016-10-24 3:45 ` [U-Boot] [PATCH 4/4] Fix spelling of "resetting" Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass @ 2016-11-02 14:26 ` Tom Rini 1 sibling, 0 replies; 13+ messages in thread From: Tom Rini @ 2016-11-02 14:26 UTC (permalink / raw) To: u-boot On Sun, Oct 23, 2016 at 08:45:19PM -0700, Vagrant Cascadian wrote: > Cover-Letter: Fixes several spelling errors for the words "resetting", > "extended", "occur", and "multiple". > > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > Reviewed-by: Simon Glass <sjg@chromium.org> Applied to u-boot/master (before v2016.11-rc3), thanks! -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161102/f83d7a0b/attachment.sig> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [PATCH 1/4] Fix spelling of "multiple". 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian ` (2 preceding siblings ...) 2016-10-24 3:45 ` [U-Boot] [PATCH 4/4] Fix spelling of "resetting" Vagrant Cascadian @ 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,1/4] " Tom Rini 4 siblings, 0 replies; 13+ messages in thread From: Simon Glass @ 2016-10-26 16:31 UTC (permalink / raw) To: u-boot On 23 October 2016 at 20:45, Vagrant Cascadian <vagrant@debian.org> wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > --- > > fs/ubifs/ubifs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Simon Glass <sjg@chromium.org> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [U-Boot] [U-Boot,1/4] Fix spelling of "multiple". 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian ` (3 preceding siblings ...) 2016-10-26 16:31 ` [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Simon Glass @ 2016-11-02 14:26 ` Tom Rini 4 siblings, 0 replies; 13+ messages in thread From: Tom Rini @ 2016-11-02 14:26 UTC (permalink / raw) To: u-boot On Sun, Oct 23, 2016 at 08:45:16PM -0700, Vagrant Cascadian wrote: > Signed-off-by: Vagrant Cascadian <vagrant@debian.org> > Reviewed-by: Simon Glass <sjg@chromium.org> Applied to u-boot/master (before v2016.11-rc3), thanks! -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.denx.de/pipermail/u-boot/attachments/20161102/cef1c871/attachment.sig> ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2016-11-02 14:26 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-10-24 3:45 [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Vagrant Cascadian 2016-10-24 3:45 ` [U-Boot] [PATCH 2/4] Fix spelling of "occur" Vagrant Cascadian 2016-10-24 7:51 ` Angelo Dureghello 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,2/4] " Tom Rini 2016-10-24 3:45 ` [U-Boot] [PATCH 3/4] Fix spelling of "extended" Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,3/4] " Tom Rini 2016-10-24 3:45 ` [U-Boot] [PATCH 4/4] Fix spelling of "resetting" Vagrant Cascadian 2016-10-26 16:31 ` Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,4/4] " Tom Rini 2016-10-26 16:31 ` [U-Boot] [PATCH 1/4] Fix spelling of "multiple" Simon Glass 2016-11-02 14:26 ` [U-Boot] [U-Boot,1/4] " Tom Rini
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox