|
@@ -6112,10 +6112,6 @@ ahd_alloc(void *platform_arg, char *name)
|
|
ahd->int_coalescing_stop_threshold =
|
|
ahd->int_coalescing_stop_threshold =
|
|
AHD_INT_COALESCING_STOP_THRESHOLD_DEFAULT;
|
|
AHD_INT_COALESCING_STOP_THRESHOLD_DEFAULT;
|
|
|
|
|
|
- if (ahd_platform_alloc(ahd, platform_arg) != 0) {
|
|
|
|
- ahd_free(ahd);
|
|
|
|
- ahd = NULL;
|
|
|
|
- }
|
|
|
|
#ifdef AHD_DEBUG
|
|
#ifdef AHD_DEBUG
|
|
if ((ahd_debug & AHD_SHOW_MEMORY) != 0) {
|
|
if ((ahd_debug & AHD_SHOW_MEMORY) != 0) {
|
|
printk("%s: scb size = 0x%x, hscb size = 0x%x\n",
|
|
printk("%s: scb size = 0x%x, hscb size = 0x%x\n",
|
|
@@ -6123,6 +6119,10 @@ ahd_alloc(void *platform_arg, char *name)
|
|
(u_int)sizeof(struct hardware_scb));
|
|
(u_int)sizeof(struct hardware_scb));
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
+ if (ahd_platform_alloc(ahd, platform_arg) != 0) {
|
|
|
|
+ ahd_free(ahd);
|
|
|
|
+ ahd = NULL;
|
|
|
|
+ }
|
|
return (ahd);
|
|
return (ahd);
|
|
}
|
|
}
|
|
|
|
|