~ubuntu-branches/debian/jessie/xserver-xorg-video-intel/jessie

« back to all changes in this revision

Viewing changes to src/legacy/i810/i810_driver.c

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois
  • Date: 2012-06-12 20:30:51 UTC
  • mfrom: (26.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20120612203051-mex5136iqfafp06b
Tags: 2:2.19.0-3
* Add patch to avoid X segfaults with Driver-less Device sections in
  xorg.conf (Closes: #677206):
  - 0003-Avoid-calling-xf86nameCompare-with-a-NULL-pointer.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2102
2102
}
2103
2103
 
2104
2104
 
2105
 
void lg_i810_init(ScrnInfoPtr scrn)
 
2105
Bool lg_i810_init(ScrnInfoPtr scrn)
2106
2106
{
2107
2107
    scrn->PreInit = I810PreInit;
2108
2108
    scrn->ScreenInit = I810ScreenInit;
2112
2112
    scrn->LeaveVT = I810LeaveVT;
2113
2113
    scrn->FreeScreen = I810FreeScreen;
2114
2114
    scrn->ValidMode = I810ValidMode;
 
2115
    return TRUE;
2115
2116
}