aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/xen-pciback/passthrough.c
diff options
context:
space:
mode:
authorJan Beulich <JBeulich@suse.com>2011-09-21 16:22:11 -0400
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2011-09-21 18:17:59 -0400
commit402c5e15b44070461dcc2f41536c16d0cfbca9c3 (patch)
tree71802460e80198e591a7946cfd0d943b2951f68c /drivers/xen/xen-pciback/passthrough.c
parent04df355227fa75c015491153cfc93e7ea7a80112 (diff)
xen/pciback: miscellaneous adjustments
This is a minor bugfix and a set of small cleanups; as it is not clear whether this needs splitting into pieces (and if so, at what granularity), it is a single combined patch. - add a missing return statement to an error path in kill_domain_by_device() - use pci_is_enabled() rather than raw atomic_read() - remove a bogus attempt to zero-terminate an already zero-terminated string - #define DRV_NAME once uniformly in the shared local header - make DRIVER_ATTR() variables static - eliminate a pointless use of list_for_each_entry_safe() - add MODULE_ALIAS() - a little bit of constification - adjust a few messages - remove stray semicolons from inline function definitions Signed-off-by: Jan Beulich <jbeulich@suse.com> [v1: Dropped the resource_size fix, altered the description] [v2: Fixed cleanpatch.pl comments] Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/xen-pciback/passthrough.c')
-rw-r--r--drivers/xen/xen-pciback/passthrough.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xen-pciback/passthrough.c b/drivers/xen/xen-pciback/passthrough.c
index e01e4b6ef267..828dddc360df 100644
--- a/drivers/xen/xen-pciback/passthrough.c
+++ b/drivers/xen/xen-pciback/passthrough.c
@@ -176,7 +176,7 @@ static int __xen_pcibk_get_pcifront_dev(struct pci_dev *pcidev,
176 return 1; 176 return 1;
177} 177}
178 178
179struct xen_pcibk_backend xen_pcibk_passthrough_backend = { 179const struct xen_pcibk_backend xen_pcibk_passthrough_backend = {
180 .name = "passthrough", 180 .name = "passthrough",
181 .init = __xen_pcibk_init_devices, 181 .init = __xen_pcibk_init_devices,
182 .free = __xen_pcibk_release_devices, 182 .free = __xen_pcibk_release_devices,