Index: internal.c |
diff --git a/internal.c b/internal.c |
index 2f70f8512ee4676f5d9c1a98736dd8c1ea149ae7..3b74add6b7ccd26c52d64f45f96ae1283954f0ac 100644 |
--- a/internal.c |
+++ b/internal.c |
@@ -371,18 +371,15 @@ int internal_init(void) |
#endif |
} |
-int internal_shutdown(void) |
+#if 0 |
Stefan Reinauer
2011/04/27 20:34:05
delete this?
dhendrix
2011/04/27 21:15:05
Done.
|
+void internal_shutdown(void *data) |
{ |
release_io_perms(); |
- |
-#if defined(__i386__) || defined(__x86_64__) |
- if (target_bus == CHIP_BUSTYPE_LPC || |
- target_bus == CHIP_BUSTYPE_FWH) { |
- it85xx_shutdown(); |
- wpce775x_shutdown(); |
- mec1308_shutdown(); |
- } |
+} |
#endif |
+int internal_shutdown(void) |
+{ |
+ release_io_perms(); |
return 0; |
} |