diff options
author | Alexander Gordeev <lasaine@lvk.cs.msu.su> | 2011-02-25 14:44:30 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-02-25 15:07:37 -0800 |
commit | 99b0d365e5ade293c5fa25a9f1a49ac764656670 (patch) | |
tree | 990a7b08fa9be6e347c4325fd976ad3df2181a08 /drivers/pps | |
parent | e5598f8bf5449bc09e4005600ead32e6f2a3e79b (diff) | |
download | linux-99b0d365e5ade293c5fa25a9f1a49ac764656670.tar.gz linux-99b0d365e5ade293c5fa25a9f1a49ac764656670.tar.bz2 linux-99b0d365e5ade293c5fa25a9f1a49ac764656670.zip |
pps: initialize ts_real properly
Initialize ts_real.flags to fix compiler warning about possible
uninitialized use of this field.
Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su>
Cc: john stultz <johnstul@us.ibm.com>
Cc: Rodolfo Giometti <giometti@linux.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pps')
-rw-r--r-- | drivers/pps/kapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pps/kapi.c b/drivers/pps/kapi.c index cba1b43f7519..a4e8eb9fece6 100644 --- a/drivers/pps/kapi.c +++ b/drivers/pps/kapi.c @@ -168,7 +168,7 @@ void pps_event(struct pps_device *pps, struct pps_event_time *ts, int event, { unsigned long flags; int captured = 0; - struct pps_ktime ts_real; + struct pps_ktime ts_real = { .sec = 0, .nsec = 0, .flags = 0 }; /* check event type */ BUG_ON((event & (PPS_CAPTUREASSERT | PPS_CAPTURECLEAR)) == 0); |