extern int aic7xxx_reset(Scsi_Cmnd *);
In drivers/scsi/hosts.h a pointer to the reset function is prototyped as:
struct SHT {
...
int (* reset)(Scsi_Cmnd *, unsigned int);
This leads to the following warning:
hosts.c:205: warning: initialization from incompatible pointer type
I guess a dummy int should be added to the aic7xxx reset function.
Regards,
Han