if (feature->suspend) {
retval = feature->suspend(feature->io_op);
if (!retval)
- printk(O_ERR "Unable to suspend the %s feature.\n", feature->name);
+ printk(O_ERR "Unable to suspend the %s feature (error %i).\n", feature->name, retval);
}
}
return 0;
if (feature->resume) {
retval = feature->resume(feature->io_op);
if (!retval)
- printk(O_ERR "Unable to resume the %s feature.\n", feature->name);
+ printk(O_ERR "Unable to resume the %s feature (error %i).\n", feature->name, retval);
}
}
return 0;