On Wed, Jun 05, 2013 at 10:50:06AM +0200, Johannes Schilling wrote: > --- a/drivers/staging/keucr/transport.c > +++ b/drivers/staging/keucr/transport.c > @@ -708,8 +708,8 @@ int usb_stor_Bulk_transport(struct scsi_cmnd *srb, struct > us_data *us) > > } else { > residue = min(residue, transfer_length); > - scsi_set_resid(srb, max(scsi_get_resid(srb), > - (int) residue)); > + scsi_set_resid(srb, max_t(int, scsi_get_resid(srb), > + (int)residue)); ^^^^^ This cast isn't needed any more when you use max_t.
regards, dan carpenter -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/