From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexey Dobriyan Subject: Re: linux-next: Tree for January 23 (drivers/watchdog/cpwd.c:411: error: 'inode' undeclared (first use in this function)) Date: Sat, 24 Jan 2009 00:21:26 +0300 Message-ID: <20090123212126.GA4937@x200.localdomain> References: <20090123184826.f2c91472.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from fg-out-1718.google.com ([72.14.220.159]:45843 "EHLO fg-out-1718.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755879AbZAWVP4 (ORCPT ); Fri, 23 Jan 2009 16:15:56 -0500 Content-Disposition: inline In-Reply-To: <20090123184826.f2c91472.sfr@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, wim@iguana.be On sparc: drivers/watchdog/cpwd.c: In function 'cpwd_ioctl': drivers/watchdog/cpwd.c:411: error: 'inode' undeclared (first use in this function) drivers/watchdog/cpwd.c:411: error: (Each undeclared identifier is reported only once drivers/watchdog/cpwd.c:411: error: for each function it appears in.) drivers/watchdog/cpwd.c: In function 'cpwd_compat_ioctl': drivers/watchdog/cpwd.c:483: warning: passing argument 1 of 'cpwd_ioctl' from incompatible pointer type drivers/watchdog/cpwd.c:483: warning: passing argument 2 of 'cpwd_ioctl' makes integer from pointer without a cast drivers/watchdog/cpwd.c:483: error: too many arguments to function 'cpwd_ioctl' Signed-off-by: Alexey Dobriyan --- drivers/watchdog/cpwd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/watchdog/cpwd.c +++ b/drivers/watchdog/cpwd.c @@ -402,6 +402,7 @@ static int cpwd_release(struct inode *inode, struct file *file) static long cpwd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { + struct inode *inode = file->f_path.dentry->d_inode; static struct watchdog_info info = { .options = WDIOF_SETTIMEOUT, .firmware_version = 1, @@ -480,7 +481,7 @@ static long cpwd_compat_ioctl(struct file *file, unsigned int cmd, case WIOCSTOP: case WIOCGSTAT: lock_kernel(); - rval = cpwd_ioctl(file->f_path.dentry->d_inode, file, cmd, arg); + rval = cpwd_ioctl(file, cmd, arg); unlock_kernel(); break;