Skip to content
Snippets Groups Projects
Commit 658ef2bd authored by patacongo's avatar patacongo
Browse files

Fix macro parameter problem

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2699 42af7a65-404d-4744-a932-0658087f49c3
parent 03295ded
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@
#define MTD_ERASE(d,s,n) ((d)->erase ? (d)->erase(d,s,n) : (-ENOSYS))
#define MTD_BREAD(d,s,n,b) ((d)->bread ? (d)->bread(d,s,n,b) : (-ENOSYS))
#define MTD_READ(d,a,n,b) ((d)->read ? (d)->read(d,s,n,b) : (-ENOSYS))
#define MTD_READ(d,s,n,b) ((d)->read ? (d)->read(d,s,n,b) : (-ENOSYS))
#define MTD_BWRITE(d,s,n,b)((d)->bwrite ? (d)->bwrite(d,s,n,b) : (-ENOSYS))
#define MTD_IOCTL(d,c,a) ((d)->ioctl ? (d)->ioctl(d,c,a) : (-ENOSYS))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment