diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2003-07-30 00:00:00 +0200 |
---|---|---|
committer | Tormod Volden <debian.tormod@gmail.com> | 2011-11-18 23:50:23 +0100 |
commit | 1c57df5a09d39ca372436c34c12671daaaab59e5 (patch) | |
tree | 38b89f1a4631e28e55bec32e8a9efa8aa7913848 | |
parent | bf2f7579fb9b8dcd5cfc6885dde7940ec0b99610 (diff) |
Avoid segfault on TV signal format change with ThinkPad T23
Fix segfaults seen on IBM ThinkPad T23 when changing TV signal format.
Thanks to the upstream author, Tim Roberts, for help in creating this patch.
-rw-r--r-- | s3switch.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -102,8 +102,12 @@ IOAccess( int enable ) /* Allow or disallow access to I/O ports. */ ioperm( 0x40, 4, enable ); + ioperm( 0x4f, 1, enable ); ioperm( 0x61, 1, enable ); + ioperm( 0x70, 1, enable ); + ioperm( 0x71, 1, enable ); ioperm( 0x80, 1, enable ); + ioperm( 0xb2, 1, enable ); ioperm( 0x3b0, 0x30, enable ); ioperm( 0xeb, 1, enable ); } |