Ejemplo n.º 1
0
static void rgidle_before_wfi(int cpu)
{
    if (TRUE == mt_idle_chk_golden)
    {
        mt_power_gs_dump_idle();
    }
}
Ejemplo n.º 2
0
static int dump_idle_read(char *buf, char **start, off_t off, int count, int *eof, void *data)
{
    int len = 0;
    char *p = buf;

    p += sprintf(p, "mt_power_gs : idle\n");

    mt_power_gs_dump_idle();

    len = p - buf;
    return len;
}
Ejemplo n.º 3
0
static int dump_idle_read(struct seq_file *m, void *v)
{
    seq_printf(m, "mt_power_gs : idle\n");
    mt_power_gs_dump_idle();
    return 0;
}