diff options
| -rw-r--r-- | drivers/video/xen-fbfront.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/xen-fbfront.c b/drivers/video/xen-fbfront.c index 15502d5e3641..54cd91610174 100644 --- a/drivers/video/xen-fbfront.c +++ b/drivers/video/xen-fbfront.c | |||
| @@ -454,6 +454,10 @@ static int __devinit xenfb_probe(struct xenbus_device *dev, | |||
| 454 | 454 | ||
| 455 | xenfb_init_shared_page(info, fb_info); | 455 | xenfb_init_shared_page(info, fb_info); |
| 456 | 456 | ||
| 457 | ret = xenfb_connect_backend(dev, info); | ||
| 458 | if (ret < 0) | ||
| 459 | goto error; | ||
| 460 | |||
| 457 | ret = register_framebuffer(fb_info); | 461 | ret = register_framebuffer(fb_info); |
| 458 | if (ret) { | 462 | if (ret) { |
| 459 | fb_deferred_io_cleanup(fb_info); | 463 | fb_deferred_io_cleanup(fb_info); |
| @@ -464,10 +468,6 @@ static int __devinit xenfb_probe(struct xenbus_device *dev, | |||
| 464 | } | 468 | } |
| 465 | info->fb_info = fb_info; | 469 | info->fb_info = fb_info; |
| 466 | 470 | ||
| 467 | ret = xenfb_connect_backend(dev, info); | ||
| 468 | if (ret < 0) | ||
| 469 | goto error; | ||
| 470 | |||
| 471 | xenfb_make_preferred_console(); | 471 | xenfb_make_preferred_console(); |
| 472 | return 0; | 472 | return 0; |
| 473 | 473 | ||
