diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-03-11 21:19:14 +0000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-03-15 11:27:03 +1000 |
commit | 0a10c85129c2d53cfd6db81677628e2fe58b5928 (patch) | |
tree | 6dd3dce247ad005d0ebb41b321cb7f0586e4bee0 /drivers/gpu/drm/radeon/Makefile | |
parent | 1fc59eda33e55f8787901e3501d695bf5ecec48b (diff) | |
download | talos-op-linux-0a10c85129c2d53cfd6db81677628e2fe58b5928.tar.gz talos-op-linux-0a10c85129c2d53cfd6db81677628e2fe58b5928.zip |
drm/radeon: create radeon_asic.c
And move asic init plus a few related functions from radeon_device.c
to it. This file will hold all the asic structures in the future,
but atm they're still stuck in radeon_asic.h.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/Makefile')
-rw-r--r-- | drivers/gpu/drm/radeon/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/Makefile b/drivers/gpu/drm/radeon/Makefile index ed38262d9985..3c91312dea9a 100644 --- a/drivers/gpu/drm/radeon/Makefile +++ b/drivers/gpu/drm/radeon/Makefile @@ -50,7 +50,7 @@ $(obj)/r600_cs.o: $(obj)/r600_reg_safe.h radeon-y := radeon_drv.o radeon_cp.o radeon_state.o radeon_mem.o \ radeon_irq.o r300_cmdbuf.o r600_cp.o # add KMS driver -radeon-y += radeon_device.o radeon_kms.o \ +radeon-y += radeon_device.o radeon_asic.o radeon_kms.o \ radeon_atombios.o radeon_agp.o atombios_crtc.o radeon_combios.o \ atom.o radeon_fence.o radeon_ttm.o radeon_object.o radeon_gart.o \ radeon_legacy_crtc.o radeon_legacy_encoders.o radeon_connectors.o \ |