Re: [linux-sunxi] [PATCH u-boot] cmd_gpio: fix warning with GPIO_OSCILLATE

2014-03-11 Thread Olliver Schinagl

On 03/11/14 09:38, Ian Campbell wrote:

On Sun, 2014-03-09 at 20:10 +0100, Olliver Schinagl wrote:

Ian,

sorry for not replying earlier, but isn't that a bug-fix against the
generic U-Boot? In that case, it's probably wise to post it on the
u-boot mailing list :)


As Henrik says it's actually sunxi functionality.

This particular fix is already in the sunxi tree I think.
Yeah I read that mail a little later (my fault for having an e-mail 
backlog).


Sorry for the noise Ian!

Ollier


Ian.



--
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [linux-sunxi] [PATCH u-boot] cmd_gpio: fix warning with GPIO_OSCILLATE

2014-03-11 Thread Ian Campbell
On Sun, 2014-03-09 at 20:10 +0100, Olliver Schinagl wrote:
> Ian,
> 
> sorry for not replying earlier, but isn't that a bug-fix against the 
> generic U-Boot? In that case, it's probably wise to post it on the 
> u-boot mailing list :)

As Henrik says it's actually sunxi functionality.

This particular fix is already in the sunxi tree I think.

Ian.


signature.asc
Description: This is a digitally signed message part


Re: [linux-sunxi] [PATCH u-boot] cmd_gpio: fix warning with GPIO_OSCILLATE

2014-03-09 Thread Olliver Schinagl

Ian,

sorry for not replying earlier, but isn't that a bug-fix against the 
generic U-Boot? In that case, it's probably wise to post it on the 
u-boot mailing list :)


Other then that, I think i fixed most sunxi specific compile errors and 
that one has been annoying me for ages :)


Olliver

On 01/31/14 18:05, Ian Campbell wrote:

In do_gpio value is not initialised in the GPIO_OSCILLATE case:

cmd_gpio.c: In function ‘do_gpio’:
cmd_gpio.c:92:2: warning: ‘value’ may be used uninitialized in this function 
[-Wmaybe-uninitialized]
   return value;
   ^

Returning 0 in this case seems fairly logical.

Signed-off-by: Ian Campbell 
Cc: Henrik Nordstrom 
---
  common/cmd_gpio.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/common/cmd_gpio.c b/common/cmd_gpio.c
index d551415..a43e89e 100644
--- a/common/cmd_gpio.c
+++ b/common/cmd_gpio.c
@@ -75,6 +75,7 @@ static int do_gpio(cmd_tbl_t *cmdtp, int flag, int argc, char 
* const argv[])
gpio_set_value(gpio, i&1);
}
gpio_direction_input(gpio);
+   value = 0;
} else {
switch (sub_cmd) {
case GPIO_SET:value = 1; break;



--
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [linux-sunxi] [PATCH u-boot] cmd_gpio: fix warning with GPIO_OSCILLATE

2014-03-09 Thread Henrik Nordström
GPIO_OSCILLATE is a hack in our u-boot used for measuring PIO
performance. Should likely be removed.

Regards
Henrik


sön 2014-03-09 klockan 20:10 +0100 skrev Olliver Schinagl:
> Ian,
> 
> sorry for not replying earlier, but isn't that a bug-fix against the 
> generic U-Boot? In that case, it's probably wise to post it on the 
> u-boot mailing list :)
> 
> Other then that, I think i fixed most sunxi specific compile errors and 
> that one has been annoying me for ages :)
> 
> Olliver
> 
> On 01/31/14 18:05, Ian Campbell wrote:
> > In do_gpio value is not initialised in the GPIO_OSCILLATE case:
> >
> > cmd_gpio.c: In function ‘do_gpio’:
> > cmd_gpio.c:92:2: warning: ‘value’ may be used uninitialized in this 
> > function [-Wmaybe-uninitialized]
> >return value;
> >^
> >
> > Returning 0 in this case seems fairly logical.
> >
> > Signed-off-by: Ian Campbell 
> > Cc: Henrik Nordstrom 
> > ---
> >   common/cmd_gpio.c | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/common/cmd_gpio.c b/common/cmd_gpio.c
> > index d551415..a43e89e 100644
> > --- a/common/cmd_gpio.c
> > +++ b/common/cmd_gpio.c
> > @@ -75,6 +75,7 @@ static int do_gpio(cmd_tbl_t *cmdtp, int flag, int argc, 
> > char * const argv[])
> > gpio_set_value(gpio, i&1);
> > }
> > gpio_direction_input(gpio);
> > +   value = 0;
> > } else {
> > switch (sub_cmd) {
> > case GPIO_SET:value = 1; break;
> >
> 


-- 
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[linux-sunxi] [PATCH u-boot] cmd_gpio: fix warning with GPIO_OSCILLATE

2014-01-31 Thread Ian Campbell
In do_gpio value is not initialised in the GPIO_OSCILLATE case:

cmd_gpio.c: In function ‘do_gpio’:
cmd_gpio.c:92:2: warning: ‘value’ may be used uninitialized in this function 
[-Wmaybe-uninitialized]
  return value;
  ^

Returning 0 in this case seems fairly logical.

Signed-off-by: Ian Campbell 
Cc: Henrik Nordstrom 
---
 common/cmd_gpio.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/cmd_gpio.c b/common/cmd_gpio.c
index d551415..a43e89e 100644
--- a/common/cmd_gpio.c
+++ b/common/cmd_gpio.c
@@ -75,6 +75,7 @@ static int do_gpio(cmd_tbl_t *cmdtp, int flag, int argc, char 
* const argv[])
gpio_set_value(gpio, i&1);
}
gpio_direction_input(gpio);
+   value = 0;
} else {
switch (sub_cmd) {
case GPIO_SET:value = 1; break;
-- 
1.8.5.3

-- 
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.