aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/bld.h
blob: 0026cf2f6ee3857bdffff347857245e82bf629c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* include/linux/bld.h */

#ifndef _LINUX_BLD_H
#define _LINUX_BLD_H

#define BLD_TOUCHKEYS_POSITION 950

struct bld_implementation
{
    void (* enable)(void);
    void (* disable)(void);
};

void register_bld_implementation(struct bld_implementation * imp);
void touchkey_pressed(void);

#endif