diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2009-06-10 00:38:42 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-06-14 23:26:18 -0400 |
commit | 02aad32c32691b63a47d8e7c098c1822faf88c35 (patch) | |
tree | 6396461eed6c91879d4fe1e5e7084a97926d7602 /drivers/video/ps3fb.c | |
parent | 3273d8778f90457a495603945e95b47c2c139f22 (diff) |
ps3fb: Remove useless debug checks in ps3fb_shutdown()
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Cc: linux-fbdev-devel@lists.sourceforge.net
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/video/ps3fb.c')
-rw-r--r-- | drivers/video/ps3fb.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c index e00c1dff55de..ce0f8735ae08 100644 --- a/drivers/video/ps3fb.c +++ b/drivers/video/ps3fb.c | |||
@@ -1247,7 +1247,6 @@ err: | |||
1247 | 1247 | ||
1248 | static int ps3fb_shutdown(struct ps3_system_bus_device *dev) | 1248 | static int ps3fb_shutdown(struct ps3_system_bus_device *dev) |
1249 | { | 1249 | { |
1250 | int status; | ||
1251 | struct fb_info *info = dev->core.driver_data; | 1250 | struct fb_info *info = dev->core.driver_data; |
1252 | 1251 | ||
1253 | dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); | 1252 | dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__); |
@@ -1271,17 +1270,8 @@ static int ps3fb_shutdown(struct ps3_system_bus_device *dev) | |||
1271 | info = dev->core.driver_data = NULL; | 1270 | info = dev->core.driver_data = NULL; |
1272 | } | 1271 | } |
1273 | iounmap((u8 __force __iomem *)ps3fb.dinfo); | 1272 | iounmap((u8 __force __iomem *)ps3fb.dinfo); |
1274 | 1273 | lv1_gpu_context_free(ps3fb.context_handle); | |
1275 | status = lv1_gpu_context_free(ps3fb.context_handle); | 1274 | lv1_gpu_memory_free(ps3fb.memory_handle); |
1276 | if (status) | ||
1277 | dev_dbg(&dev->core, "lv1_gpu_context_free failed: %d\n", | ||
1278 | status); | ||
1279 | |||
1280 | status = lv1_gpu_memory_free(ps3fb.memory_handle); | ||
1281 | if (status) | ||
1282 | dev_dbg(&dev->core, "lv1_gpu_memory_free failed: %d\n", | ||
1283 | status); | ||
1284 | |||
1285 | ps3_close_hv_device(dev); | 1275 | ps3_close_hv_device(dev); |
1286 | dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__); | 1276 | dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__); |
1287 | 1277 | ||