Skip to content

Commit ee21c98

Browse files
author
Fox Snowpatch
committed
1 parent 484dba3 commit ee21c98

File tree

4 files changed

+4
-29
lines changed

4 files changed

+4
-29
lines changed

arch/powerpc/include/asm/backlight.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@
1010
#define __ASM_POWERPC_BACKLIGHT_H
1111
#ifdef __KERNEL__
1212

13-
#include <linux/fb.h>
1413
#include <linux/mutex.h>
1514

15+
struct backlight_device;
16+
1617
/* For locking instructions, see the implementation file */
1718
extern struct backlight_device *pmac_backlight;
1819
extern struct mutex pmac_backlight_mutex;
1920

20-
extern int pmac_backlight_curve_lookup(struct fb_info *info, int value);
21-
2221
extern int pmac_has_backlight_type(const char *type);
2322

2423
extern void pmac_backlight_key(int direction);

arch/powerpc/platforms/powermac/backlight.c

-26
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
*/
1010

1111
#include <linux/kernel.h>
12-
#include <linux/fb.h>
1312
#include <linux/backlight.h>
1413
#include <linux/adb.h>
1514
#include <linux/pmu.h>
@@ -72,31 +71,6 @@ int pmac_has_backlight_type(const char *type)
7271
return 0;
7372
}
7473

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-
10074
static void pmac_backlight_key_worker(struct work_struct *work)
10175
{
10276
if (atomic_read(&kernel_backlight_disabled))

drivers/macintosh/via-pmu-backlight.c

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include <asm/ptrace.h>
1212
#include <linux/adb.h>
13+
#include <linux/backlight.h>
1314
#include <linux/pmu.h>
1415
#include <asm/backlight.h>
1516

drivers/video/fbdev/chipsfb.c

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616

1717
#include <linux/aperture.h>
18+
#include <linux/backlight.h>
1819
#include <linux/module.h>
1920
#include <linux/kernel.h>
2021
#include <linux/errno.h>

0 commit comments

Comments
 (0)