Skip to content

Commit

Permalink
Merge tag 'firewire-update2' of git://git.kernel.org/pub/scm/linux/ke…
Browse files Browse the repository at this point in the history
…rnel/git/ieee1394/linux1394

Pull firewire leftover from Stefan Richter:
 "Occurrences of timeval were supposed to be eliminated last round, now
  remove a last forgotten one"

* tag 'firewire-update2' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394:
  firewire: nosy: Replace timeval with timespec64
  • Loading branch information
Linus Torvalds committed Mar 25, 2016
2 parents f98c213 + 384fbb9 commit 3b3b3bd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/firewire/nosy.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,14 +446,16 @@ static void
bus_reset_irq_handler(struct pcilynx *lynx)
{
struct client *client;
struct timeval tv;
struct timespec64 ts64;
u32 timestamp;

do_gettimeofday(&tv);
ktime_get_real_ts64(&ts64);
timestamp = ts64.tv_nsec / NSEC_PER_USEC;

spin_lock(&lynx->client_list_lock);

list_for_each_entry(client, &lynx->client_list, link)
packet_buffer_put(&client->buffer, &tv.tv_usec, 4);
packet_buffer_put(&client->buffer, &timestamp, 4);

spin_unlock(&lynx->client_list_lock);
}
Expand Down

0 comments on commit 3b3b3bd

Please sign in to comment.