diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2013-06-17 17:36:20 +1000 |
---|---|---|
committer | Jonathan Gray <jsg@jsg.id.au> | 2013-08-12 10:42:40 +1000 |
commit | 3b58677bbf8f978bbf45e7b86819db47efa0d4bf (patch) | |
tree | e633a6223b603317c58914228d7af37e22e38be3 | |
parent | 942cd33fdc819728a9b2406399f3ca238a42340b (diff) |
move drm_vblank_count_and_time() proto to drmP.h
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 1 | ||||
-rw-r--r-- | sys/dev/pci/drm/drm_irq.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index 8d33fee09bb..4f064610683 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -913,6 +913,7 @@ int drm_irq_uninstall(struct drm_device *); void drm_vblank_cleanup(struct drm_device *); int drm_vblank_init(struct drm_device *, int); u_int32_t drm_vblank_count(struct drm_device *, int); +u_int32_t drm_vblank_count_and_time(struct drm_device *, int, struct timeval *); int drm_vblank_get(struct drm_device *, int); void drm_vblank_put(struct drm_device *, int); void drm_vblank_off(struct drm_device *, int); diff --git a/sys/dev/pci/drm/drm_irq.c b/sys/dev/pci/drm/drm_irq.c index f38594542f6..2395cf4fc4f 100644 --- a/sys/dev/pci/drm/drm_irq.c +++ b/sys/dev/pci/drm/drm_irq.c @@ -63,7 +63,6 @@ int64_t timeval_to_ns(const struct timeval *); struct timeval ns_to_timeval(const int64_t); void drm_irq_vgaarb_nokms(void *, bool); struct timeval get_drm_timestamp(void); -u32 drm_vblank_count_and_time(struct drm_device *, int, struct timeval *); void send_vblank_event(struct drm_device *, struct drm_pending_vblank_event *, unsigned long, struct timeval *); |