Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 14691
b: refs/heads/master
c: 4ad5bd2
h: refs/heads/master
i:
  14689: bf7dfa9
  14687: 37eaedc
v: v3
  • Loading branch information
Linus Torvalds committed Nov 25, 2005
1 parent 8f2f52a commit b5c8f32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 551c81e2d32c5867fb592091365d8c37e1509dce
refs/heads/master: 4ad5bd25683ae3a913efb7d5afb7ddf2b2ef09db
6 changes: 5 additions & 1 deletion trunk/drivers/video/fbmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -452,13 +452,17 @@ int fb_prepare_logo(struct fb_info *info, int rotate)

/* Return if no suitable logo was found */
fb_logo.logo = fb_find_logo(depth);

if (!fb_logo.logo) {
return 0;
}

if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
yres = info->var.yres;
else
yres = info->var.xres;

if (fb_logo.logo && fb_logo.logo->height > yres) {
if (fb_logo.logo->height > yres) {
fb_logo.logo = NULL;
return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-arm/arch-iop3xx/timex.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* IOP3xx architecture timex specifications
*/
#include <linux/config.h>

#include <asm/hardware.h>

#if defined(CONFIG_ARCH_IQ80321) || defined(CONFIG_ARCH_IQ31244)

Expand Down

0 comments on commit b5c8f32

Please sign in to comment.