diff options
author | Ruslan Pisarev <ruslan@rpisarev.org.ua> | 2011-07-26 07:17:23 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-26 13:32:06 -0400 |
commit | 6913200a566b6d2866d46d7b947a2326c4e11f55 (patch) | |
tree | 511e8cb07ae0741bf758a385a3abf74a6f6d162a /drivers/xen/xenbus | |
parent | 822a259aa17e977892bf9dbb546522c477f7b7cb (diff) |
Xen: fix braces and tabs coding style issue in xenbus_probe.c
This is a patch to the xenbus_probe.c file that fixed up braces and tabs errors found by the checkpatch.pl tools.
Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/xenbus')
-rw-r--r-- | drivers/xen/xenbus/xenbus_probe.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe.c b/drivers/xen/xenbus/xenbus_probe.c index bd2f90c9ac8b..d4c7a9ffbcb9 100644 --- a/drivers/xen/xenbus/xenbus_probe.c +++ b/drivers/xen/xenbus/xenbus_probe.c | |||
@@ -309,8 +309,7 @@ void xenbus_unregister_driver(struct xenbus_driver *drv) | |||
309 | } | 309 | } |
310 | EXPORT_SYMBOL_GPL(xenbus_unregister_driver); | 310 | EXPORT_SYMBOL_GPL(xenbus_unregister_driver); |
311 | 311 | ||
312 | struct xb_find_info | 312 | struct xb_find_info { |
313 | { | ||
314 | struct xenbus_device *dev; | 313 | struct xenbus_device *dev; |
315 | const char *nodename; | 314 | const char *nodename; |
316 | }; | 315 | }; |
@@ -639,7 +638,7 @@ int xenbus_dev_cancel(struct device *dev) | |||
639 | EXPORT_SYMBOL_GPL(xenbus_dev_cancel); | 638 | EXPORT_SYMBOL_GPL(xenbus_dev_cancel); |
640 | 639 | ||
641 | /* A flag to determine if xenstored is 'ready' (i.e. has started) */ | 640 | /* A flag to determine if xenstored is 'ready' (i.e. has started) */ |
642 | int xenstored_ready = 0; | 641 | int xenstored_ready; |
643 | 642 | ||
644 | 643 | ||
645 | int register_xenstore_notifier(struct notifier_block *nb) | 644 | int register_xenstore_notifier(struct notifier_block *nb) |
@@ -762,7 +761,7 @@ static int __init xenbus_init(void) | |||
762 | 761 | ||
763 | return 0; | 762 | return 0; |
764 | 763 | ||
765 | out_error: | 764 | out_error: |
766 | if (page != 0) | 765 | if (page != 0) |
767 | free_page(page); | 766 | free_page(page); |
768 | 767 | ||