drm/radeon/kms: clear confusion in GART init/deinit path
authorJerome Glisse <jglisse@redhat.com>
Mon, 14 Sep 2009 16:29:49 +0000 (18:29 +0200)
committerDave Airlie <airlied@redhat.com>
Mon, 14 Sep 2009 22:53:14 +0000 (08:53 +1000)
GART static one time initialization was mixed up with GART
enabling/disabling which could happen several time for instance
during suspend/resume cycles. This patch splits all GART
handling into 4 differents function. gart_init is for one
time initialization, gart_deinit is called upon module unload
to free resources allocated by gart_init, gart_enable enable
the GART and is intented to be call after first initialization
and at each resume cycle or reset cycle. Finaly gart_disable
stop the GART and is intended to be call at suspend time or
when unloading the module.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

No differences found