forked from Minki/linux
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>
This commit is contained in:
parent
822a259aa1
commit
6913200a56
@ -309,8 +309,7 @@ void xenbus_unregister_driver(struct xenbus_driver *drv)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
|
EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
|
||||||
|
|
||||||
struct xb_find_info
|
struct xb_find_info {
|
||||||
{
|
|
||||||
struct xenbus_device *dev;
|
struct xenbus_device *dev;
|
||||||
const char *nodename;
|
const char *nodename;
|
||||||
};
|
};
|
||||||
@ -639,7 +638,7 @@ int xenbus_dev_cancel(struct device *dev)
|
|||||||
EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
|
EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
|
||||||
|
|
||||||
/* A flag to determine if xenstored is 'ready' (i.e. has started) */
|
/* A flag to determine if xenstored is 'ready' (i.e. has started) */
|
||||||
int xenstored_ready = 0;
|
int xenstored_ready;
|
||||||
|
|
||||||
|
|
||||||
int register_xenstore_notifier(struct notifier_block *nb)
|
int register_xenstore_notifier(struct notifier_block *nb)
|
||||||
@ -762,7 +761,7 @@ static int __init xenbus_init(void)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_error:
|
out_error:
|
||||||
if (page != 0)
|
if (page != 0)
|
||||||
free_page(page);
|
free_page(page);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user