summaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/Makefile2
-rw-r--r--nuttx/drivers/dev_null.c7
2 files changed, 6 insertions, 3 deletions
diff --git a/nuttx/drivers/Makefile b/nuttx/drivers/Makefile
index 695dd806a..711b0ca33 100644
--- a/nuttx/drivers/Makefile
+++ b/nuttx/drivers/Makefile
@@ -69,7 +69,7 @@ $(BIN): $(OBJS)
depend: .depend
clean:
- rm -f $(BIN) *.o *~
+ rm -f $(BIN) *.o *.asm *.lst *.sym *.adb *~
distclean: clean
rm -f Make.dep .depend
diff --git a/nuttx/drivers/dev_null.c b/nuttx/drivers/dev_null.c
index f4211b513..1d449df1f 100644
--- a/nuttx/drivers/dev_null.c
+++ b/nuttx/drivers/dev_null.c
@@ -61,8 +61,11 @@ static ssize_t devnull_write(struct file *, const char *, size_t);
static struct file_operations devnull_fops =
{
- .read = devnull_read,
- .write = devnull_write,
+ NULL, /* open */
+ NULL, /* close */
+ devnull_read, /* read */
+ devnull_write, /* write */
+ NULL /* ioctl */
};
/************************************************************