[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20100225144122.d9ba8810.randy.dunlap@oracle.com>
Date: Thu, 25 Feb 2010 14:41:22 -0800
From: Randy Dunlap <randy.dunlap@...cle.com>
To: Stephen Rothwell <sfr@...b.auug.org.au>, devel@...verdev.osuosl.org
Cc: linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
gregkh@...e.de, Evgeniy Polyakov <zbr@...emap.net>
Subject: [PATCH -next] staging/pohmelfs: fix write_inode parameter warning
From: Randy Dunlap <randy.dunlap@...cle.com>
sparse warns that:
drivers/staging/pohmelfs/inode.c:1797: warning: initialization from incompatible pointer type
so fix pohmelfs_write_inode() to have the expected parameters.
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
---
drivers/staging/pohmelfs/inode.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- linux-next-20100225.orig/drivers/staging/pohmelfs/inode.c
+++ linux-next-20100225/drivers/staging/pohmelfs/inode.c
@@ -396,7 +396,8 @@ int pohmelfs_remove_child(struct pohmelf
/*
* Writeback for given inode.
*/
-static int pohmelfs_write_inode(struct inode *inode, int sync)
+static int pohmelfs_write_inode(struct inode *inode,
+ struct writeback_control *wbc)
{
struct pohmelfs_inode *pi = POHMELFS_I(inode);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists