rxrpc: Remove some excess whitespace
authorDavid Howells <dhowells@redhat.com>
Tue, 29 Aug 2017 09:18:50 +0000 (10:18 +0100)
committerDavid Howells <dhowells@redhat.com>
Tue, 29 Aug 2017 09:55:20 +0000 (10:55 +0100)
Remove indentation from some blank lines.

Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/af_rxrpc.c

index a2ad448..31e97f7 100644 (file)
@@ -591,13 +591,13 @@ static int rxrpc_getsockopt(struct socket *sock, int level, int optname,
                            char __user *optval, int __user *_optlen)
 {
        int optlen;
-       
+
        if (level != SOL_RXRPC)
                return -EOPNOTSUPP;
 
        if (get_user(optlen, _optlen))
                return -EFAULT;
-       
+
        switch (optname) {
        case RXRPC_SUPPORTED_CMSG:
                if (optlen < sizeof(int))
@@ -606,7 +606,7 @@ static int rxrpc_getsockopt(struct socket *sock, int level, int optname,
                    put_user(sizeof(int), _optlen))
                        return -EFAULT;
                return 0;
-               
+
        default:
                return -EOPNOTSUPP;
        }