From 284e92561f89005a80303f101859be144570748d Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 10 Jun 2009 15:22:49 +0000 Subject: [PATCH] All file_operations vtables should be static const git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1871 42af7a65-404d-4744-a932-0658087f49c3 --- arch/arm/src/c5471/c5471_watchdog.c | 2 +- arch/sim/src/up_devconsole.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/src/c5471/c5471_watchdog.c b/arch/arm/src/c5471/c5471_watchdog.c index 4a17e9b78b..8983b75496 100644 --- a/arch/arm/src/c5471/c5471_watchdog.c +++ b/arch/arm/src/c5471/c5471_watchdog.c @@ -102,7 +102,7 @@ static int wdt_ioctl(struct file *filep, int cmd, uint32 arg); static boolean g_wdtopen; -struct file_operations g_wdtops = +static const struct file_operations g_wdtops = { .open = wdt_open, .close = wdt_close, diff --git a/arch/sim/src/up_devconsole.c b/arch/sim/src/up_devconsole.c index 551d21600b..4ce89bce12 100644 --- a/arch/sim/src/up_devconsole.c +++ b/arch/sim/src/up_devconsole.c @@ -62,7 +62,7 @@ static int devconsole_poll(FAR struct file *filep, FAR struct pollfd *fds, * Private Data ****************************************************************************/ -static struct file_operations devconsole_fops = +static const struct file_operations devconsole_fops = { .read = devconsole_read, .write = devconsole_write,