aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/drm
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2011-03-23 13:10:15 +0000
commit3b0a4aef967e33d85308e74b00c472820e173c7a (patch)
tree69012038abf9668bf675409fa3f6a3717df04dbe /sys/dev/drm
parent7ee26a530a31c4b2f5edab56f80ef08e4066d804 (diff)
downloadsrc-3b0a4aef967e33d85308e74b00c472820e173c7a.tar.gz
src-3b0a4aef967e33d85308e74b00c472820e173c7a.zip
Do a sweep of the tree replacing calls to pci_find_extcap() with calls to
pci_find_cap() instead.
Notes
Notes: svn path=/head/; revision=219902
Diffstat (limited to 'sys/dev/drm')
-rw-r--r--sys/dev/drm/drm_agpsupport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/drm/drm_agpsupport.c b/sys/dev/drm/drm_agpsupport.c
index cb98ec118a5d..6a7ebcf5e9ef 100644
--- a/sys/dev/drm/drm_agpsupport.c
+++ b/sys/dev/drm/drm_agpsupport.c
@@ -51,7 +51,7 @@ drm_device_find_capability(struct drm_device *dev, int cap)
{
#if __FreeBSD_version >= 602102
- return (pci_find_extcap(dev->device, cap, NULL) == 0);
+ return (pci_find_cap(dev->device, cap, NULL) == 0);
#else
/* Code taken from agp.c. IWBNI that was a public interface. */
u_int32_t status;