[PATCH] radeon drm: fix compilation breakage with gcc 2.95.3

Fix a typo which breaks radeon drm compilation with gcc 2.95.3.

The offending line was added back in 2.6.11-rc3, but was harmless
back then. A recent addition nearby changed it into a compilation
breaker: commit 281ab031a8c9e5b593142eb4ec59a87faae8676a.

The doubled semi-colon ends up being an empty instruction, and the
variable declaration thus ends up being in the middle of "code".

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Mark M. Hoffman <mhoffman@lightlink.com>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Jean Delvare and committed by Linus Torvalds ee219e5e ff60dde9

+1 -1
+1 -1
drivers/char/drm/radeon_cp.c
··· 1311 1311 1312 1312 static int radeon_do_init_cp(drm_device_t * dev, drm_radeon_init_t * init) 1313 1313 { 1314 - drm_radeon_private_t *dev_priv = dev->dev_private;; 1314 + drm_radeon_private_t *dev_priv = dev->dev_private; 1315 1315 unsigned int mem_size; 1316 1316 1317 1317 DRM_DEBUG("\n");