summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-02-23 19:31:59 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-02-23 19:31:59 -0600
commit701fc273a5e955134f7f7b180e37a15cf90dedc7 (patch)
tree4218d29931531b6aa5919323b479f33e11634b80
parenteeb943acd61ab75e7804a8a740a00b636c473074 (diff)
downloadnuttx-701fc273a5e955134f7f7b180e37a15cf90dedc7.tar.gz
nuttx-701fc273a5e955134f7f7b180e37a15cf90dedc7.tar.bz2
nuttx-701fc273a5e955134f7f7b180e37a15cf90dedc7.zip
Update ChangeLog
-rwxr-xr-xnuttx/ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6569b8f3f..c2b8ab661 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -9872,3 +9872,8 @@
* libc/time/lib/lib_sfrtime.c: Missing implementation of %C in
sfrtime() C (was being treated as %y). From Freddie Chopin
(2015-02-23).
+ * drivers/can.c: In the can_open function: this line
+ 'dev->cd_ocount = tmp;' needs to be moved a few lines down otherwise
+ the open count will only be incremented from 0 to 1. This causes
+ problems when trying to open the can bus from two different tasks.
+ SourceForge Patch #46 from Anonymous (2015-02-23).