mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
parport: remove braces
checkpatch was complaining about braces for single statement block. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a162188f9c
commit
13efa75d4e
@ -735,9 +735,8 @@ parport_register_device(struct parport *port, const char *name,
|
|||||||
* neither of us gets unloaded while we sleep in (e.g.)
|
* neither of us gets unloaded while we sleep in (e.g.)
|
||||||
* kmalloc.
|
* kmalloc.
|
||||||
*/
|
*/
|
||||||
if (!try_module_get(port->ops->owner)) {
|
if (!try_module_get(port->ops->owner))
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
|
||||||
|
|
||||||
parport_get_port (port);
|
parport_get_port (port);
|
||||||
|
|
||||||
@ -1261,9 +1260,8 @@ int parport_claim_or_block(struct pardevice *dev)
|
|||||||
if (dev->waiting) {
|
if (dev->waiting) {
|
||||||
wait_event_interruptible(dev->wait_q,
|
wait_event_interruptible(dev->wait_q,
|
||||||
!dev->waiting);
|
!dev->waiting);
|
||||||
if (signal_pending (current)) {
|
if (signal_pending (current))
|
||||||
return -EINTR;
|
return -EINTR;
|
||||||
}
|
|
||||||
r = 1;
|
r = 1;
|
||||||
} else {
|
} else {
|
||||||
r = 0;
|
r = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user