From 19c1bd3a45dcd1fbefc0547822be213d5f74ae32 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 23 Jun 2014 11:20:33 -0600 Subject: [PATCH 1/3] Fix typos in AVR32 Kconfig files. From Stefan Sperling --- arch/avr/Kconfig | 2 +- arch/avr/src/avr32/Kconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/avr/Kconfig b/arch/avr/Kconfig index 917653fdce..8d26b183e8 100644 --- a/arch/avr/Kconfig +++ b/arch/avr/Kconfig @@ -22,7 +22,7 @@ config ARCH_CHIP_AT90USB Atmel AT90USB family of 8-bit AVRs. config ARCH_CHIP_AT32UC3 - bool "AVR23 AT32UC3* family" + bool "AVR32 AT32UC3* family" select ARCH_FAMILY_AVR32 ---help--- Atmel AT32UC3A/B/C family of 32-bit AVR32s. diff --git a/arch/avr/src/avr32/Kconfig b/arch/avr/src/avr32/Kconfig index b542381ea7..5e04c40da8 100644 --- a/arch/avr/src/avr32/Kconfig +++ b/arch/avr/src/avr32/Kconfig @@ -16,7 +16,7 @@ config AVR32_AVRTOOLSW depends on HOST_WINDOWS config AVR32_AVRTOOLSL - bool "AVR tools for Windows" + bool "AVR tools for Linux" depends on HOST_LINUX endchoice # Toolchain From f30cbd1bdf515fa7286a5512ce36506d4fe7afc2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 23 Jun 2014 11:29:13 -0600 Subject: [PATCH 2/3] Remove some spurious spaces in field selectors --- net/net_send_unbuffered.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/net_send_unbuffered.c b/net/net_send_unbuffered.c index 10c623ddbf..cbc1c2cb22 100644 --- a/net/net_send_unbuffered.c +++ b/net/net_send_unbuffered.c @@ -681,7 +681,7 @@ ssize_t tcpsend(FAR struct socket *psock, FAR const void *buf, size_t len, save = uip_lock(); memset(&state, 0, sizeof(struct send_s)); - (void)sem_init(&state. snd_sem, 0, 0); /* Doesn't really fail */ + (void)sem_init(&state.snd_sem, 0, 0); /* Doesn't really fail */ state.snd_sock = psock; /* Socket descriptor to use */ state.snd_buflen = len; /* Number of bytes to send */ state.snd_buffer = buf; /* Buffer to send from */ @@ -726,7 +726,7 @@ ssize_t tcpsend(FAR struct socket *psock, FAR const void *buf, size_t len, * automatically re-enabled when the task restarts. */ - ret = uip_lockedwait(&state. snd_sem); + ret = uip_lockedwait(&state.snd_sem); /* Make sure that no further interrupts are processed */ @@ -734,7 +734,7 @@ ssize_t tcpsend(FAR struct socket *psock, FAR const void *buf, size_t len, } } - sem_destroy(&state. snd_sem); + sem_destroy(&state.snd_sem); uip_unlock(save); /* Set the socket state to idle */ From 5fe252ce25e84833ef60f2b6ff53d0eaa7178d87 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 23 Jun 2014 11:29:30 -0600 Subject: [PATCH 3/3] Update ChangeLog --- ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index d420798687..035eb508ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7464,3 +7464,8 @@ * include/time.h and sched/clock_gettime.c: Fix typo in conditional compilation: CONFIG_CLOCK_MONOTONIC vs. CLOCK_MONOTONIC. From Manuel Stühn (2014-6-23). + * arch/avr/Kconfig and arch/avr/src/avr32/Kconfig: Fix typos in + Kconfig files from Stefan Sperling (2014-6-23). + * net/net_send_unbuffered.c: Remove some spurious white space from + field selectors. SourceForge ticket #42 (2014-6-23). +