properly wrap hal stuff inside HAVE_HAL.

SPANK SPANK SPANK raster... he also left lots of trailing whitespace there :-/



SVN revision: 60248
This commit is contained in:
Gustavo Sverzut Barbieri 2011-06-12 22:41:09 +00:00
parent aeb90bf58a
commit fee122d19d
1 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#include "e.h" #include "e.h"
#include <E_DBus.h> #include <E_DBus.h>
#ifdef HAVE_HAL
#include <E_Hal.h> #include <E_Hal.h>
#endif
// FIXME: backlight should be tied per zone but this implementation is just // FIXME: backlight should be tied per zone but this implementation is just
// a signleton right now as thats 99% of use cases. but api supports // a signleton right now as thats 99% of use cases. but api supports
@ -51,7 +53,9 @@ e_backlight_shutdown(void)
{ {
e_dbus_connection_close(_hal_conn); e_dbus_connection_close(_hal_conn);
_hal_conn = NULL; _hal_conn = NULL;
#ifdef HAVE_HAL
e_hal_shutdown(); e_hal_shutdown();
#endif
e_dbus_shutdown(); e_dbus_shutdown();
if (_hal_bl_dev) if (_hal_bl_dev)
{ {
@ -158,6 +162,7 @@ e_backlight_mode_get(E_Zone *zone __UNUSED__)
/* local subsystem functions */ /* local subsystem functions */
#ifdef HAL_BL #ifdef HAL_BL
#ifdef HAVE_HAL
void void
_e_backlight_hal_val_reply(void *data __UNUSED__, _e_backlight_hal_val_reply(void *data __UNUSED__,
DBusMessage *reply, DBusMessage *reply,
@ -288,6 +293,7 @@ _e_backlight_panel_found(void *user_data __UNUSED__,
} }
} }
#endif #endif
#endif
static void static void
_e_backlight_update(E_Zone *zone) _e_backlight_update(E_Zone *zone)
@ -311,6 +317,7 @@ _e_backlight_update(E_Zone *zone)
else else
{ {
#ifdef HAL_BL #ifdef HAL_BL
#ifdef HAVE_HAL
sysmode = MODE_HAL; sysmode = MODE_HAL;
if (!_hal_conn) if (!_hal_conn)
{ {
@ -325,6 +332,7 @@ _e_backlight_update(E_Zone *zone)
(_hal_conn, "laptop_panel", (_hal_conn, "laptop_panel",
_e_backlight_panel_found, NULL); _e_backlight_panel_found, NULL);
} }
#endif
#endif #endif
} }
} }
@ -349,7 +357,9 @@ _e_backlight_set(E_Zone *zone, double val)
else if (sysmode == MODE_HAL) else if (sysmode == MODE_HAL)
{ {
#ifdef HAL_BL #ifdef HAL_BL
#ifdef HAVE_HAL
_e_backlight_hal_val_set(val); _e_backlight_hal_val_set(val);
#endif
#endif #endif
} }
} }