diff options
author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-06-09 19:18:30 +0000 |
---|---|---|
committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-06-09 19:18:30 +0000 |
commit | 0711190db13cebeb526246840d7160551cbfea45 (patch) | |
tree | e6c438559d10150579e42fb9ae4b624512df2ce2 /firmware | |
parent | b91ebdd60078e7a8f6dec42270e3f0915ec08caa (diff) |
Correct some comments (no functional changes)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21236 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c b/firmware/target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c index 391af0acb7..f2ef3f7dc1 100644 --- a/firmware/target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c +++ b/firmware/target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c @@ -42,7 +42,7 @@ static void set_backlight(int val) the flickering is not perceptible to the human eye but not greater than about 1kHz. */ - /* Clock = 8192 Hz */ + /* Clock = 32 768 Hz */ /* 1 <= val <= 30 */ int cycle = (MAX_BRIGHTNESS_SETTING - val + 1); @@ -84,7 +84,7 @@ bool _backlight_init(void) __tcu_enable_pwm_output(BACKLIGHT_PWM); __tcu_select_rtcclk(BACKLIGHT_PWM); /* 32.768 kHz */ - __tcu_select_clk_div1(BACKLIGHT_PWM); /* 8.192 kHz */ + __tcu_select_clk_div1(BACKLIGHT_PWM); __tcu_mask_half_match_irq(BACKLIGHT_PWM); __tcu_mask_full_match_irq(BACKLIGHT_PWM); |