Update ChangeLog

This commit is contained in:
Gregory Nutt 2015-01-06 10:52:05 -06:00
parent 7277d66529
commit 2b522bab9e
2 changed files with 13 additions and 11 deletions

View file

@ -9208,7 +9208,7 @@
and the FS clock enable bits are set in FS mode, then the ARM never
awakens from WFI due to a chip issue. This is only an issue if you
are using the internal PHY. From Ken Pettit (2014-12-13).
* drivers/serial/serial.c: In case a thread is doing a blockingi
* drivers/serial/serial.c: In case a thread is doing a blocking
operation (e.g. read()) on a serial device, while it is being
terminated by pthread_cancel(), then uart_close() gets called, but
the semaphore (dev->recv.sem in the above example) is still blocked.
@ -9354,7 +9354,7 @@
* arch/arm/src/stm32/stm32_ltdc.c: Clean up documentation, some
formatting improvements. From Marco Krahl (2014-12-29).
* arch/arm/src/tiva/chip/tiva_ethernet.h, lm3s_ethernet.c, and
tm4c_ethernet.h: Add logic to descriminate betwen LM3S class Ethernet
tm4c_ethernet.h: Add logic to discriminate betwen LM3S class Ethernet
register definitions and TM4C129X class Ethernet register definitions.
Add TM4C129X Ethernet register definitions (2014-12-30).
* arch/arm/src/tiva/tm4c_ethernet.c, lm3s_ethernet.c, Kconfig, and
@ -9368,5 +9368,7 @@
defining CONFIG_RTC_LSICLOCK. From Kevin Hester (2015-01-02).
* net/tcp/tcp_conn.c: Fix a logic error when CONFIG_NETDEV_MULTINIC is
selected: net_unlock(flags) will be called will an uninitialized
variable (2015-01-03).
variable (2015-01-03).
* arch/arm/src/tiva/tiva_irq.c: Fix Tiva IRQ control logic; was limited
to only 64 IRQs. That is a problem for higher numbered IRQs on many
platforms (2015-01-06).

View file

@ -1,5 +1,5 @@
/****************************************************************************
* include/nuttx/lm75.h
* include/nuttx/sensors/lm75.h
*
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -33,8 +33,8 @@
*
****************************************************************************/
#ifndef __NUTTX_SENSORS_LM75_H
#define __NUTTX_SENSORS_LM75_H
#ifndef __INCLUDE_NUTTX_SENSORS_LM75_H
#define __INCLUDE_NUTTX_SENSORS_LM75_H
/****************************************************************************
* Included Files
@ -86,15 +86,15 @@
*/
/****************************************************************************
* Global Data
* Public Data
****************************************************************************/
/****************************************************************************
* Global Function Prototypes
* Public Function Prototypes
****************************************************************************/
/****************************************************************************
* Global Function Prototypes
* Public Function Prototypes
****************************************************************************/
#ifdef __cplusplus
@ -130,4 +130,4 @@ EXTERN int lm75_register(FAR const char *devpath, FAR struct i2c_dev_s *i2c,
}
#endif
#endif /* __NUTTX_SENSORS_LM75_H */
#endif /* __INCLUDE_NUTTX_SENSORS_LM75_H */