diff options
Diffstat (limited to 'drivers/video/console/fbcon_rotate.c')
-rw-r--r-- | drivers/video/console/fbcon_rotate.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/video/console/fbcon_rotate.c b/drivers/video/console/fbcon_rotate.c index 6a969318480f..9df009c8ab49 100644 --- a/drivers/video/console/fbcon_rotate.c +++ b/drivers/video/console/fbcon_rotate.c | |||
@@ -97,6 +97,12 @@ finished: | |||
97 | void fbcon_set_rotate(struct fbcon_ops *ops) | 97 | void fbcon_set_rotate(struct fbcon_ops *ops) |
98 | { | 98 | { |
99 | ops->rotate_font = fbcon_rotate_font; | 99 | ops->rotate_font = fbcon_rotate_font; |
100 | |||
101 | switch(ops->rotate) { | ||
102 | case FB_ROTATE_CW: | ||
103 | fbcon_rotate_cw(ops); | ||
104 | break; | ||
105 | } | ||
100 | } | 106 | } |
101 | EXPORT_SYMBOL(fbcon_set_rotate); | 107 | EXPORT_SYMBOL(fbcon_set_rotate); |
102 | 108 | ||