diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-17 20:56:29 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-17 20:56:29 +0100 |
commit | 00b1d444afc2e5c3129b4a9c16b1de03c0fce3f0 (patch) | |
tree | e2221c08271cd4413f191532a957cb0e7b2a525b /drivers/xen | |
parent | Merge branch 'next' of git://git.monstr.eu/linux-2.6-microblaze (diff) | |
parent | xen/balloon: Move the registration from device to subsystem. (diff) | |
download | linux-00b1d444afc2e5c3129b4a9c16b1de03c0fce3f0.tar.xz linux-00b1d444afc2e5c3129b4a9c16b1de03c0fce3f0.zip |
Merge branch 'stable/for-linus-fixes-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen
* 'stable/for-linus-fixes-3.3' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
xen/balloon: Move the registration from device to subsystem.
Diffstat (limited to 'drivers/xen')
-rw-r--r-- | drivers/xen/xen-balloon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c index 3832e303c33a..596e6a7b17d6 100644 --- a/drivers/xen/xen-balloon.c +++ b/drivers/xen/xen-balloon.c @@ -221,7 +221,7 @@ static int register_balloon(struct device *dev) { int i, error; - error = bus_register(&balloon_subsys); + error = subsys_system_register(&balloon_subsys, NULL); if (error) return error; |