blob: e752fef460ac7f07b5f9915615c2f00520a8aeaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* bh1721.h - BH1721 Ambient Light Sensors driver
*
* Copyright (c) 2009 Samsung Eletronics
* Authors:
* Donggeun Kim <dg77.kim@samsung.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*/
#ifndef _BH1721_H_
#define _BH1721_H_
#include <linux/types.h>
#ifdef __KERNEL__
#define BH1721_OPT "bh1721-opt"
struct bh1721_platform_data
{
void (*reset)(void);
};
#endif /* __KERNEL__ */
#endif
|