diff options
author | Jon Smirl <jonsmirl@yahoo.com> | 2005-07-03 17:16:12 +0000 |
---|---|---|
committer | Jon Smirl <jonsmirl@yahoo.com> | 2005-07-03 17:16:12 +0000 |
commit | d41af11ee30413f90064cfffb5687be92a28021c (patch) | |
tree | 2faf7181d9a653f6549ea4bb2ef2fb93aacdf9ad /linux-core/i810_drv.c | |
parent | e2ba08d28335b43515ccbefcc21052ed0d5a7e47 (diff) |
Add sysfs attribute dri_library_name on Linux. code in share-core/via_drv.c
is ok to be shared, it will be passive on BSD.
Diffstat (limited to 'linux-core/i810_drv.c')
-rw-r--r-- | linux-core/i810_drv.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux-core/i810_drv.c b/linux-core/i810_drv.c index 128452c0..f043041b 100644 --- a/linux-core/i810_drv.c +++ b/linux-core/i810_drv.c @@ -70,6 +70,11 @@ static int version(drm_version_t * version) return 0; } +static int dri_library_name(struct drm_device * dev, char * buf) +{ + return snprintf(buf, PAGE_SIZE, "i830\n"); +} + static struct pci_device_id pciidlist[] = { i810_PCI_IDS }; @@ -90,6 +95,7 @@ static struct drm_driver driver = { .dma_quiescent = i810_driver_dma_quiescent, .get_map_ofs = drm_core_get_map_ofs, .get_reg_ofs = drm_core_get_reg_ofs, + .dri_library_name = dri_library_name, .postinit = postinit, .version = version, .ioctls = i810_ioctls, |