public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Re: ieee1394/sbp2.c doesn't compile in 2.5.45
@ 2002-11-01  1:01 Miles Lane
  2002-11-01  2:07 ` Douglas Gilbert
  0 siblings, 1 reply; 2+ messages in thread
From: Miles Lane @ 2002-11-01  1:01 UTC (permalink / raw)
  To: Douglas Gilbert, linux-kernel


Douglas wrote:

> Adrian,
> Could you try this patch that I sent to the scsi
> list against 2.5.44-bk3.

Yes, this patch fixed the 2.5.45 compile for me.

	Miles

> --- linux/drivers/ieee1394/sbp2.h	2002-10-26 03:11:32.000000000 +1000
> +++ linux/drivers/ieee1394/sbp2.h2544bk3fix	2002-10-31 11:27:25.000000000 +1100
> @@ -552,7 +552,8 @@
>  #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,28)
>  static int sbp2scsi_biosparam (Scsi_Disk *disk, kdev_t dev, int geom[]);
>  #else
> -static int sbp2scsi_biosparam (Scsi_Disk *disk, struct block_device *dev, int geom[]);
> +static int sbp2scsi_biosparam (struct scsi_device *sdev, 
> +			struct block_device *dev, sector_t capacy, int geom[]);
>  #endif
>  static int sbp2scsi_abort (Scsi_Cmnd *SCpnt); 
>  static int sbp2scsi_reset (Scsi_Cmnd *SCpnt); 
> --- linux/drivers/ieee1394/sbp2.c	2002-10-31 09:22:50.000000000 +1100
> +++ linux/drivers/ieee1394/sbp2.c2544bk3fix	2002-10-31 11:30:20.000000000 +1100
> @@ -3137,14 +3137,14 @@
>  /*
>   * Called by scsi stack to get bios parameters (used by fdisk, and at boot).
>   */
> -#if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,44)
> +#if LINUX_VERSION_CODE > KERNEL_VERSION(2,5,43)
>  static int sbp2scsi_biosparam (struct scsi_device *sdev,
> -		struct block_device *dev, sector_t capacy, int geom[]) 
> +		struct block_device *dev, sector_t capacity, int geom[]) 
>  {
>  #else
>  static int sbp2scsi_biosparam (Scsi_Disk *disk, kdev_t dev, int geom[]) 
>  {
> -	sector_t capacy = disk->capacity;
> +	sector_t capacity = disk->capacity;
>  #endif
>  	int heads, sectors, cylinders;




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-11-01  2:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-01  1:01 [PATCH] Re: ieee1394/sbp2.c doesn't compile in 2.5.45 Miles Lane
2002-11-01  2:07 ` Douglas Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox