summaryrefslogtreecommitdiff
path: root/firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c')
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c b/firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
index 5655d92ef8..4a818d6bfc 100644
--- a/firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
+++ b/firmware/target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
@@ -82,7 +82,7 @@ int button_read_device(void)
82 /* if the buttons dont agree twice in a row, then its none */ 82 /* if the buttons dont agree twice in a row, then its none */
83 lastbutton = btn; 83 lastbutton = btn;
84 btn = BUTTON_NONE; 84 btn = BUTTON_NONE;
85 button_backlight_on(); 85 buttonlight_on();
86 } 86 }
87 87
88 /* Check for hold first - exit if asserted with no button pressed */ 88 /* Check for hold first - exit if asserted with no button pressed */
@@ -107,7 +107,7 @@ int button_read_device(void)
107 107
108 if (buttons & (1 << 4)) 108 if (buttons & (1 << 4))
109 btn |= BUTTON_A; 109 btn |= BUTTON_A;
110 button_backlight_on(); 110 buttonlight_on();
111 } 111 }
112 112
113 /* the touchpad */ 113 /* the touchpad */
@@ -128,7 +128,7 @@ int button_read_device(void)
128 128
129 if (touchpad & (1 << 3)) 129 if (touchpad & (1 << 3))
130 btn |= BUTTON_SELECT; 130 btn |= BUTTON_SELECT;
131 button_backlight_on(); 131 buttonlight_on();
132 } 132 }
133 133
134 return btn; 134 return btn;