[ACTIVITY] week6+7 2016

2016-02-19 Thread Wookey
ILP32 Bootstrap [BB-277 20%] Started, reviewed names via cross-distro list Updated DPKG and configure patches. testing Fixup packages for arm64 [50%] Tried to get openvrml building on arm64 with dh-autoreconf. Bugs and patches updated Robot OS 10% [BB-163 leftovers] Advised on some issues wi

[PATCH 6/6] Pass options to init functions.

2016-02-19 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 5 - gpio.c | 5 - powerdebug.c | 19 --- powerdebug.h | 20 regulator.c | 5 - sensor.c | 5 - 6 files changed, 36 insertions(+), 23 deletions(-) diff --git a/clocks.c b/clocks.c

[PATCH 5/6] Consolidate the headers into a single one.

2016-02-19 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- clocks.c | 1 - clocks.h | 23 --- display.c| 1 - gpio.h | 23 --- powerdebug.c | 11 --- powerdebug.h | 19 +++ regulator.c | 3 --- regulator.h | 23 ---

[PATCH 4/6] Fix license. Linaro switched years ago to GPL.

2016-02-19 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- LICENSE | 567 --- clocks.c | 28 +-- clocks.h | 28 +-- display.c| 28 +-- display.h| 28 +-- gpio.c | 28 +-- gpio.h | 28 +-- mainloop.c | 26 +-- mainloop.h |

[PATCH 2/6] Fix compilation warnings.

2016-02-19 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- display.c | 7 ++- gpio.c| 11 ++- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/display.c b/display.c index ee9..1114366 100644 --- a/display.c +++ b/display.c @@ -198,13 +198,13 @@ static int display_prev_panel(void) st

[PATCH 3/6] Prevent to init a subsystem if it is not selected.

2016-02-19 Thread Daniel Lezcano
Signed-off-by: Daniel Lezcano --- powerdebug.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/powerdebug.c b/powerdebug.c index 555beea..bc8fc92 100644 --- a/powerdebug.c +++ b/powerdebug.c @@ -208,13 +208,12 @@ static struct powerdebug_options *powerdebug_init(

[PATCH 1/6] Change options to flag approach.

2016-02-19 Thread Daniel Lezcano
From: Daniel Lezcano That has the benefit to simplify the code. Signed-off-by: Daniel Lezcano --- powerdebug.c | 65 +++- 1 file changed, 34 insertions(+), 31 deletions(-) diff --git a/powerdebug.c b/powerdebug.c index 6cf3a1b..555beea 1