Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
5dbc80f6
Commit
5dbc80f6
authored
Jul 30, 2009
by
Russell King
Committed by
Russell King
Jul 30, 2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix' of
git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6
parents
3ef7143d
1d3e216f
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
0 deletions
+20
-0
arch/arm/mach-pxa/em-x270.c
arch/arm/mach-pxa/em-x270.c
+4
-0
arch/arm/mach-pxa/palmld.c
arch/arm/mach-pxa/palmld.c
+4
-0
arch/arm/mach-pxa/palmt5.c
arch/arm/mach-pxa/palmt5.c
+4
-0
arch/arm/mach-pxa/palmtx.c
arch/arm/mach-pxa/palmtx.c
+4
-0
arch/arm/mach-pxa/zylonite_pxa300.c
arch/arm/mach-pxa/zylonite_pxa300.c
+2
-0
arch/arm/mach-pxa/zylonite_pxa320.c
arch/arm/mach-pxa/zylonite_pxa320.c
+2
-0
No files found.
arch/arm/mach-pxa/em-x270.c
View file @
5dbc80f6
...
...
@@ -1141,12 +1141,16 @@ struct power_supply_info em_x270_psy_info = {
static
void
em_x270_battery_low
(
void
)
{
#if defined(CONFIG_APM_EMULATION)
apm_queue_event
(
APM_LOW_BATTERY
);
#endif
}
static
void
em_x270_battery_critical
(
void
)
{
#if defined(CONFIG_APM_EMULATION)
apm_queue_event
(
APM_CRITICAL_SUSPEND
);
#endif
}
struct
da9030_battery_info
em_x270_batterty_info
=
{
...
...
arch/arm/mach-pxa/palmld.c
View file @
5dbc80f6
...
...
@@ -128,6 +128,10 @@ static unsigned long palmld_pin_config[] __initdata = {
GPIO38_GPIO
,
/* wifi ready */
GPIO81_GPIO
,
/* wifi reset */
/* FFUART */
GPIO34_FFUART_RXD
,
GPIO39_FFUART_TXD
,
/* HDD */
GPIO98_GPIO
,
/* HDD reset */
GPIO115_GPIO
,
/* HDD power */
...
...
arch/arm/mach-pxa/palmt5.c
View file @
5dbc80f6
...
...
@@ -111,6 +111,10 @@ static unsigned long palmt5_pin_config[] __initdata = {
/* PWM */
GPIO16_PWM0_OUT
,
/* FFUART */
GPIO34_FFUART_RXD
,
GPIO39_FFUART_TXD
,
/* MISC */
GPIO10_GPIO
,
/* hotsync button */
GPIO90_GPIO
,
/* power detect */
...
...
arch/arm/mach-pxa/palmtx.c
View file @
5dbc80f6
...
...
@@ -127,6 +127,10 @@ static unsigned long palmtx_pin_config[] __initdata = {
GPIO76_LCD_PCLK
,
GPIO77_LCD_BIAS
,
/* FFUART */
GPIO34_FFUART_RXD
,
GPIO39_FFUART_TXD
,
/* MISC. */
GPIO10_GPIO
,
/* hotsync button */
GPIO12_GPIO
,
/* power detect */
...
...
arch/arm/mach-pxa/zylonite_pxa300.c
View file @
5dbc80f6
...
...
@@ -197,10 +197,12 @@ static void __init zylonite_detect_lcd_panel(void)
for
(
i
=
0
;
i
<
NUM_LCD_DETECT_PINS
;
i
++
)
{
id
=
id
<<
1
;
gpio
=
mfp_to_gpio
(
lcd_detect_pins
[
i
]);
gpio_request
(
gpio
,
"LCD_ID_PINS"
);
gpio_direction_input
(
gpio
);
if
(
gpio_get_value
(
gpio
))
id
=
id
|
0x1
;
gpio_free
(
gpio
);
}
/* lcd id, flush out bit 1 */
...
...
arch/arm/mach-pxa/zylonite_pxa320.c
View file @
5dbc80f6
...
...
@@ -176,10 +176,12 @@ static void __init zylonite_detect_lcd_panel(void)
for
(
i
=
0
;
i
<
NUM_LCD_DETECT_PINS
;
i
++
)
{
id
=
id
<<
1
;
gpio
=
mfp_to_gpio
(
lcd_detect_pins
[
i
]);
gpio_request
(
gpio
,
"LCD_ID_PINS"
);
gpio_direction_input
(
gpio
);
if
(
gpio_get_value
(
gpio
))
id
=
id
|
0x1
;
gpio_free
(
gpio
);
}
/* lcd id, flush out bit 1 */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment