Skip to content

Commit

Permalink
tweak ts booster parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
lvchaqiu committed Oct 17, 2012
1 parent b361191 commit 92428d0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions arch/arm/mach-exynos/mx_ts_booster.c
Expand Up @@ -22,8 +22,9 @@


#include <mach/dev.h> #include <mach/dev.h>


#define BOOST_CPU_FREQ 600000 #define BOOST_CPU_FREQ (800000U)
#define BOOST_BUS_FREQ 267160 #define BOOST_BUS_FREQ (267200UL)
#define KEEP_TIME (HZ)


struct mx_booster_info { struct mx_booster_info {
struct input_handler handler; struct input_handler handler;
Expand Down Expand Up @@ -102,7 +103,7 @@ static int mx_ts_boost(struct mx_booster_info *info)
pr_debug("mxt_input_boost time = %Lu uS\n", delta_us); pr_debug("mxt_input_boost time = %Lu uS\n", delta_us);
} }


return queue_delayed_work(info->wq, &info->time_work, HZ); return queue_delayed_work(info->wq, &info->time_work, KEEP_TIME);
} }


static void mx_boost_fn(struct work_struct *work) static void mx_boost_fn(struct work_struct *work)
Expand Down

0 comments on commit 92428d0

Please sign in to comment.