Skip to content

Commit

Permalink
Merge head 'drm-via' of master.kernel.org:/pub/scm/linux/kernel/git/a…
Browse files Browse the repository at this point in the history
…irlied/drm-2.6
  • Loading branch information
Linus Torvalds committed Jul 9, 2005
2 parents bb6b823 + 717cb90 commit 4cda1fd
Show file tree
Hide file tree
Showing 17 changed files with 5,345 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/char/drm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,10 @@ config DRM_SIS
chipset. If M is selected the module will be called sis. AGP
support is required for this driver to work.

config DRM_VIA
tristate "Via unichrome video cards"
depends on DRM
help
Choose this option if you have a Via unichrome or compatible video
chipset. If M is selected the module will be called via.

2 changes: 2 additions & 0 deletions drivers/char/drm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ i915-objs := i915_drv.o i915_dma.o i915_irq.o i915_mem.o
radeon-objs := radeon_drv.o radeon_cp.o radeon_state.o radeon_mem.o radeon_irq.o
ffb-objs := ffb_drv.o ffb_context.o
sis-objs := sis_drv.o sis_ds.o sis_mm.o
via-objs := via_irq.o via_drv.o via_ds.o via_map.o via_mm.o via_dma.o via_verifier.o via_video.o

ifeq ($(CONFIG_COMPAT),y)
drm-objs += drm_ioc32.o
Expand All @@ -35,4 +36,5 @@ obj-$(CONFIG_DRM_I830) += i830.o
obj-$(CONFIG_DRM_I915) += i915.o
obj-$(CONFIG_DRM_FFB) += ffb.o
obj-$(CONFIG_DRM_SIS) += sis.o
obj-$(CONFIG_DRM_VIA) +=via.o

7 changes: 7 additions & 0 deletions drivers/char/drm/drm_pciids.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,10 @@
{0x8086, 0x2772, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0, 0, 0}

#define viadrv_PCI_IDS \
{0x1106, 0x3022, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0x1106, 0x3122, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0x1106, 0x7205, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0x1106, 0x7204, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
{0, 0, 0}

Loading

0 comments on commit 4cda1fd

Please sign in to comment.