drm/mgag200: Don't do full cleanup if mgag200_device_init fails
authorChristopher Harvey <charvey@matrox.com>
Wed, 5 Jun 2013 15:29:57 +0000 (11:29 -0400)
committerDave Airlie <airlied@gmail.com>
Mon, 17 Jun 2013 09:42:49 +0000 (19:42 +1000)
commit279119776d98305af08466c6cc9b7869c57c706f
tree3cb57709c7d80ccbcf6f25f980caf61a8b0f5068
parenta080db9fdda77ffaa43679d21b4bd78ead0cf9e1
drm/mgag200: Don't do full cleanup if mgag200_device_init fails

Running mgag200_driver_unload when the driver init fails early on
causes functions like drm_mode_config_cleanup to be called. The
problem is, drm_mode_config_cleanup crashes because the corresponding
init hasn't happend yet. There really isn't anything to cleanup after
mgag200_device_init, so we can just pass the error code upwards.

Acked-by: Julia Lemire <jlemire@matrox.com>
Signed-off-by: Christopher Harvey <charvey@matrox.com>
Acked-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Dave Airlie <airlied@gmail.com>
drivers/gpu/drm/mgag200/mgag200_main.c