File tree 4 files changed +4
-29
lines changed
4 files changed +4
-29
lines changed Original file line number Diff line number Diff line change 10
10
#define __ASM_POWERPC_BACKLIGHT_H
11
11
#ifdef __KERNEL__
12
12
13
- #include <linux/fb.h>
14
13
#include <linux/mutex.h>
15
14
15
+ struct backlight_device ;
16
+
16
17
/* For locking instructions, see the implementation file */
17
18
extern struct backlight_device * pmac_backlight ;
18
19
extern struct mutex pmac_backlight_mutex ;
19
20
20
- extern int pmac_backlight_curve_lookup (struct fb_info * info , int value );
21
-
22
21
extern int pmac_has_backlight_type (const char * type );
23
22
24
23
extern void pmac_backlight_key (int direction );
Original file line number Diff line number Diff line change 9
9
*/
10
10
11
11
#include <linux/kernel.h>
12
- #include <linux/fb.h>
13
12
#include <linux/backlight.h>
14
13
#include <linux/adb.h>
15
14
#include <linux/pmu.h>
@@ -72,31 +71,6 @@ int pmac_has_backlight_type(const char *type)
72
71
return 0 ;
73
72
}
74
73
75
- int pmac_backlight_curve_lookup (struct fb_info * info , int value )
76
- {
77
- int level = (FB_BACKLIGHT_LEVELS - 1 );
78
-
79
- if (info && info -> bl_dev ) {
80
- int i , max = 0 ;
81
-
82
- /* Look for biggest value */
83
- for (i = 0 ; i < FB_BACKLIGHT_LEVELS ; i ++ )
84
- max = max ((int )info -> bl_curve [i ], max );
85
-
86
- /* Look for nearest value */
87
- for (i = 0 ; i < FB_BACKLIGHT_LEVELS ; i ++ ) {
88
- int diff = abs (info -> bl_curve [i ] - value );
89
- if (diff < max ) {
90
- max = diff ;
91
- level = i ;
92
- }
93
- }
94
-
95
- }
96
-
97
- return level ;
98
- }
99
-
100
74
static void pmac_backlight_key_worker (struct work_struct * work )
101
75
{
102
76
if (atomic_read (& kernel_backlight_disabled ))
Original file line number Diff line number Diff line change 10
10
11
11
#include <asm/ptrace.h>
12
12
#include <linux/adb.h>
13
+ #include <linux/backlight.h>
13
14
#include <linux/pmu.h>
14
15
#include <asm/backlight.h>
15
16
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
#include <linux/aperture.h>
18
+ #include <linux/backlight.h>
18
19
#include <linux/module.h>
19
20
#include <linux/kernel.h>
20
21
#include <linux/errno.h>
You can’t perform that action at this time.
0 commit comments