Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 175635
b: refs/heads/master
c: d048ec7
h: refs/heads/master
i:
  175633: abf8917
  175631: 41ad8db
v: v3
  • Loading branch information
Kevin Hilman authored and paul committed Dec 12, 2009
1 parent c6081d9 commit ec21e6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 81d7c6ffccd1d5369942c428faa9ee25a3d59db8
refs/heads/master: d048ec7ab48254c505e1cee49441345ce12129fd
4 changes: 2 additions & 2 deletions trunk/arch/arm/plat-omap/omap_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static int _omap_device_activate(struct omap_device *od, u8 ignore_lat)
read_persistent_clock(&b);

c = timespec_sub(b, a);
act_lat = timespec_to_ns(&c) * NSEC_PER_USEC;
act_lat = timespec_to_ns(&c) / NSEC_PER_USEC;

pr_debug("omap_device: %s: pm_lat %d: activate: elapsed time "
"%llu usec\n", od->pdev.name, od->pm_lat_level,
Expand Down Expand Up @@ -198,7 +198,7 @@ static int _omap_device_deactivate(struct omap_device *od, u8 ignore_lat)
read_persistent_clock(&b);

c = timespec_sub(b, a);
deact_lat = timespec_to_ns(&c) * NSEC_PER_USEC;
deact_lat = timespec_to_ns(&c) / NSEC_PER_USEC;

pr_debug("omap_device: %s: pm_lat %d: deactivate: elapsed time "
"%llu usec\n", od->pdev.name, od->pm_lat_level,
Expand Down

0 comments on commit ec21e6d

Please sign in to comment.