diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2013-08-06 16:46:18 +1000 |
---|---|---|
committer | Jonathan Gray <jsg@jsg.id.au> | 2013-08-12 10:47:24 +1000 |
commit | 1cc7b2054ecc12e41f75d4d30414363fd536140b (patch) | |
tree | 000cb58d9e77617211d56117ef1f80bc0e4d9fff | |
parent | f95c00988380463a3fc04d4a7b2a80064ca3bd7d (diff) |
remove the stub printf in radeon_fbdev_set_suspend
we shouldn't need to do anything here
-rw-r--r-- | sys/dev/pci/drm/radeon/radeon_fb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/drm/radeon/radeon_fb.c b/sys/dev/pci/drm/radeon/radeon_fb.c index 35454d30c5c..97c14407afc 100644 --- a/sys/dev/pci/drm/radeon/radeon_fb.c +++ b/sys/dev/pci/drm/radeon/radeon_fb.c @@ -463,8 +463,7 @@ void radeon_fbdev_fini(struct radeon_device *rdev) void radeon_fbdev_set_suspend(struct radeon_device *rdev, int state) { - printf("%s stub\n", __func__); -#ifdef notyet +#ifdef __linux__ fb_set_suspend(rdev->mode_info.rfbdev->helper.fbdev, state); #endif } |