From: Sudip Mukherjee <[email protected]>

checkpatch was complaining about braces for single statement block.

Signed-off-by: Sudip Mukherjee <[email protected]>
---
 drivers/parport/share.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/parport/share.c b/drivers/parport/share.c
index dcad902..5dbd6f4 100644
--- a/drivers/parport/share.c
+++ b/drivers/parport/share.c
@@ -735,9 +735,8 @@ parport_register_device(struct parport *port, const char 
*name,
         * neither of us gets unloaded while we sleep in (e.g.)
         * kmalloc.
         */
-       if (!try_module_get(port->ops->owner)) {
+       if (!try_module_get(port->ops->owner))
                return NULL;
-       }
 
        parport_get_port (port);
 
@@ -1261,9 +1260,8 @@ int parport_claim_or_block(struct pardevice *dev)
                if (dev->waiting) {
                        wait_event_interruptible(dev->wait_q,
                                                 !dev->waiting);
-                       if (signal_pending (current)) {
+                       if (signal_pending (current))
                                return -EINTR;
-                       }
                        r = 1;
                } else {
                        r = 0;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to