summaryrefslogtreecommitdiff
authorschurig <schurig>2004-09-09 09:08:36 (UTC)
committer schurig <schurig>2004-09-09 09:08:36 (UTC)
commit8df28401db620a01144ca45988837583f55e15c3 (patch) (unidiff)
tree7024a45504623a81abbf58c7ab0cae08d7870bd2
parent739d8dc8d4aed25e09d43805c802e9836240655b (diff)
downloadopie-8df28401db620a01144ca45988837583f55e15c3.zip
opie-8df28401db620a01144ca45988837583f55e15c3.tar.gz
opie-8df28401db620a01144ca45988837583f55e15c3.tar.bz2
support for devfs
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/libopie2/opiecore/device/odevice.cpp b/libopie2/opiecore/device/odevice.cpp
index 280b0c5..2355621 100644
--- a/libopie2/opiecore/device/odevice.cpp
+++ b/libopie2/opiecore/device/odevice.cpp
@@ -318,9 +318,13 @@ bool ODevice::setDisplayStatus ( bool on )
318 318
319 bool res = false; 319 bool res = false;
320 int fd; 320 int fd;
321 321
322#ifdef QT_QWS_DEVFS
323 if (( fd = ::open ( "/dev/fb/0", O_RDWR )) >= 0 ) {
324#else
322 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) { 325 if (( fd = ::open ( "/dev/fb0", O_RDWR )) >= 0 ) {
326#endif
323 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 ); 327 res = ( ::ioctl ( fd, FBIOBLANK, on ? VESA_NO_BLANKING : VESA_POWERDOWN ) == 0 );
324 ::close ( fd ); 328 ::close ( fd );
325 } 329 }
326 return res; 330 return res;