diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2009-09-02 22:40:03 -0400 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2009-09-10 06:49:36 -0400 |
commit | 6cf4442feba5af93a09cadfc5a6512a971f7825d (patch) | |
tree | 6fb875623e1f4862fdb6e69d5ea867c7b7ae56a4 /drivers/pcmcia | |
parent | 36d618be131547adc51c464a3a0a9f72f2449a2d (diff) |
[ARM] pxa/palm: fix possibly uninitialized variable in PalmTC-pcmcia
This 'problem' actually cant cause a failure of the driver, but it's always
better to be correct.
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/pxa2xx_palmtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/pxa2xx_palmtc.c b/drivers/pcmcia/pxa2xx_palmtc.c index 2c295078032a..3a8993ed5621 100644 --- a/drivers/pcmcia/pxa2xx_palmtc.c +++ b/drivers/pcmcia/pxa2xx_palmtc.c | |||
@@ -156,7 +156,7 @@ static int palmtc_wifi_powerup(void) | |||
156 | static int palmtc_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, | 156 | static int palmtc_pcmcia_configure_socket(struct soc_pcmcia_socket *skt, |
157 | const socket_state_t *state) | 157 | const socket_state_t *state) |
158 | { | 158 | { |
159 | int ret; | 159 | int ret = 1; |
160 | 160 | ||
161 | if (state->Vcc == 0) | 161 | if (state->Vcc == 0) |
162 | ret = palmtc_wifi_powerdown(); | 162 | ret = palmtc_wifi_powerdown(); |