Changeset 2903


Ignore:
Timestamp:
09/04/07 15:12:38 (6 years ago)
Author:
laforge
Message:
  • add a missing 'break' statement resulting in FBIOPUT_VSCREENINFO to always fail
  • indicate that 24/32bpp will never be supported with glamo3362
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/target/kernel/patches/smedia-glamo.patch

    r2902 r2903  
    18111811+                       break; 
    18121812+               } 
     1813+               break; 
    18131814+       case 24: 
    18141815+       case 32: 
     
    18321833+       switch (var->bits_per_pixel) { 
    18331834+       case 16: 
    1834 +       case 24: 
    1835 +       case 32: 
    18361835+               glamo->fb->fix.visual = FB_VISUAL_TRUECOLOR; 
    18371836+               break; 
    18381837+       default: 
    1839 +               printk("Smedia driver doens't [yet?] support <16bpp\n"); 
     1838+               printk("Smedia driver doens't support != 16bpp\n"); 
    18401839+               return -EINVAL; 
    18411840+       } 
     
    20972096+       glamofb->mach_info = pdev->dev.platform_data; 
    20982097+ 
     2098+       fbinfo->fix.visual = FB_VISUAL_TRUECOLOR; 
    20992099+       fbinfo->fix.type = FB_TYPE_PACKED_PIXELS; 
    21002100+       fbinfo->fix.type_aux = 0; 
Note: See TracChangeset for help on using the changeset viewer.