Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
b2bdba08
Commit
b2bdba08
authored
9 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
S25FL1 FLASH driver: Fix return value from the bwrite() method
parent
41337324
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+4
-2
4 additions, 2 deletions
ChangeLog
arch
+1
-1
1 addition, 1 deletion
arch
configs
+1
-1
1 addition, 1 deletion
configs
drivers/mtd/st25fl1.c
+1
-1
1 addition, 1 deletion
drivers/mtd/st25fl1.c
with
7 additions
and
5 deletions
ChangeLog
+
4
−
2
View file @
b2bdba08
...
...
@@ -10881,7 +10881,7 @@
device (2015-08-24).
* networking: Correct return value from psock_tcp_accept(). From
SaeHie Park (2015-08-25).
* drivers/mtd/s
t
25fl1.c: Add a driver for ST25L1*K QuadSPI parts
* drivers/mtd/s25fl1.c: Add a driver for ST25L1*K QuadSPI parts
(2015-08-25).
* include/nuttx/spi/qspi.h: Develop a new interface for QSPI, at
least the way that QSPI is implemented on the SAMV71. Originally
...
...
@@ -11071,4 +11071,6 @@
* arch/arm/src/samv7: Add a call to can_txready() to the MCAN driver
(2015-11-03).
* arch/arm/src/samv7: Add MPU and protected build support (2015-11-06).
* arch/arm/src/samv7: The QSPI FLASH driver is now functional. This
driver operates in the memory-mapped, Serial Memory Mode (SMM)
(2015-11-07).
This diff is collapsed.
Click to expand it.
arch
@
2137b6c7
Subproject commit
dd5268721c6a5c05ebd441556d3fddeb4b1d0509
Subproject commit
2137b6c754118003664432d16dd4b69685939c74
This diff is collapsed.
Click to expand it.
configs
@
8e4edaaa
Subproject commit
449de6ca27fc922687fe586aa65742cffbf2bc2e
Subproject commit
8e4edaaa0293ae3ca1517f6798694d8e96c553bb
This diff is collapsed.
Click to expand it.
drivers/mtd/st25fl1.c
+
1
−
1
View file @
b2bdba08
...
...
@@ -1289,7 +1289,7 @@ static ssize_t st25fl1_bwrite(FAR struct mtd_dev_s *dev, off_t startblock,
st25fl1_unlock
(
priv
->
qspi
);
return
ret
;
return
ret
<
0
?
ret
:
nblocks
;
}
/************************************************************************************
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment