]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Staging: lustre: linux-module: fix pointer style issue
authorJessica Yu <jyu@cowsay.org>
Mon, 28 Jul 2014 13:33:12 +0000 (06:33 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jul 2014 23:56:42 +0000 (16:56 -0700)
Fix pointer code style (foo * bar -> foo *bar)

Signed-off-by: Jessica Yu <jyu@cowsay.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/libcfs/linux/linux-module.c

index ccadf6581cc46e7e538f14e102820600bc3f5948..b0c00a94105d591f1859acb7c596088173e24874 100644 (file)
@@ -99,7 +99,7 @@ int libcfs_ioctl_popdata(void *arg, void *data, int size)
 extern struct cfs_psdev_ops      libcfs_psdev_ops;
 
 static int
-libcfs_psdev_open(struct inode * inode, struct file * file)
+libcfs_psdev_open(struct inode *inode, struct file *file)
 {
        struct libcfs_device_userstate **pdu = NULL;
        int    rc = 0;
@@ -116,7 +116,7 @@ libcfs_psdev_open(struct inode * inode, struct file * file)
 
 /* called when closing /dev/device */
 static int
-libcfs_psdev_release(struct inode * inode, struct file * file)
+libcfs_psdev_release(struct inode *inode, struct file *file)
 {
        struct libcfs_device_userstate *pdu;
        int    rc = 0;