htcleo: increases speed of lightsensorread and cleanups

This commit is contained in:
Markinus 2010-10-15 00:05:05 +02:00
parent beda73cdb0
commit 5d520f034c
2 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ int htcleo_brightness_set_bkl(uint8_t value)
int ret;
uint8_t cmd[2], data[2];
printk("microp_set_bkl(%d)\n", value);
pr_debug("microp_set_bkl(%d)\n", value);
if (value > 9)
{

View File

@ -47,9 +47,9 @@ user may be able to adjust time in future
//#define LSENSOR_ABLK_ONLY 2
#define LSENSOR_POLL_PROMESHUTOK 5000
#define LSENSOR_POLL_PROMESHUTOK 1000
#define D(x...) printk(x)
#define D(x...) pr_debug(x)
// pr_info(x)
@ -115,7 +115,7 @@ int lightsensor_read_value(uint32_t *val)
}
*val = data[1] | (data[0] << 8);
printk("lsensor adc = %d\n", *val);
D("lsensor adc = %d\n", *val);
return 0;
}