summaryrefslogtreecommitdiff
authorsandman <sandman>2002-10-28 18:32:11 (UTC)
committer sandman <sandman>2002-10-28 18:32:11 (UTC)
commita5079b9255ca2bfbb39df8bf22cd85d22caee342 (patch) (unidiff)
treed051aa685c9dd7257a16c3a7ad49e38ea93fcc69
parente73eeb479da0ea891c4ad8f5dd7a8361252d794e (diff)
downloadopie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.zip
opie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.tar.gz
opie-a5079b9255ca2bfbb39df8bf22cd85d22caee342.tar.bz2
Fixed a typo -- just wondering why I commited this
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 2b7e927..9f64fc0 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -663,65 +663,65 @@ bool iPAQ::setDisplayBrightness ( int bright )
663 663
664 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { 664 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
665 FLITE_IN bl; 665 FLITE_IN bl;
666 bl. mode = 1; 666 bl. mode = 1;
667 bl. pwr = bright ? 1 : 0; 667 bl. pwr = bright ? 1 : 0;
668 bl. brightness = bright; 668 bl. brightness = bright;
669 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); 669 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 );
670 ::close ( fd ); 670 ::close ( fd );
671 } 671 }
672 return res; 672 return res;
673} 673}
674 674
675int iPAQ::displayBrightnessResolution ( ) const 675int iPAQ::displayBrightnessResolution ( ) const
676{ 676{
677 return 256; // really 128, but logarithmic control is smoother this way 677 return 256; // really 128, but logarithmic control is smoother this way
678} 678}
679 679
680 680
681bool iPAQ::hasLightSensor ( ) const 681bool iPAQ::hasLightSensor ( ) const
682{ 682{
683 return true; 683 return true;
684} 684}
685#include <errno.h> 685#include <errno.h>
686#include <string.h> 686#include <string.h>
687int iPAQ::readLightSensor ( ) 687int iPAQ::readLightSensor ( )
688{ 688{
689 int fd; 689 int fd;
690 int val = -1; 690 int val = -1;
691 691
692 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { 692 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
693 char buffer [8]; 693 char buffer [8];
694 694
695 if ( ::read ( fd, buffer, 5 ) == 5 ) 695 if ( ::read ( fd, buffer, 5 ) == 5 ) {
696 char *endptr; 696 char *endptr;
697 697
698 buffer [4] = 0; 698 buffer [4] = 0;
699 val = ::strtol ( buffer + 2, &endptr, 16 ); 699 val = ::strtol ( buffer + 2, &endptr, 16 );
700 700
701 if ( *endptr != 0 ) 701 if ( *endptr != 0 )
702 val = -1; 702 val = -1;
703 } 703 }
704 ::close ( fd ); 704 ::close ( fd );
705 } 705 }
706 706
707 return val; 707 return val;
708} 708}
709 709
710 710
711/************************************************** 711/**************************************************
712 * 712 *
713 * Zaurus 713 * Zaurus
714 * 714 *
715 **************************************************/ 715 **************************************************/
716 716
717 717
718 718
719void Zaurus::init ( ) 719void Zaurus::init ( )
720{ 720{
721 d-> m_modelstr = "Zaurus SL5000"; 721 d-> m_modelstr = "Zaurus SL5000";
722 d-> m_model = Model_Zaurus_SL5000; 722 d-> m_model = Model_Zaurus_SL5000;
723 d-> m_vendorstr = "Sharp"; 723 d-> m_vendorstr = "Sharp";
724 d-> m_vendor = Vendor_Sharp; 724 d-> m_vendor = Vendor_Sharp;
725 725
726 QFile f ( "/proc/filesystems" ); 726 QFile f ( "/proc/filesystems" );
727 727