public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] CISS: require same SCSI module support
@ 2006-11-21 19:06 Randy Dunlap
  2006-11-21 21:19 ` Miller, Mike (OS Dev)
  0 siblings, 1 reply; 2+ messages in thread
From: Randy Dunlap @ 2006-11-21 19:06 UTC (permalink / raw)
  To: scsi; +Cc: mike.miller, iss_storagedev, akpm

From: Randy Dunlap <randy.dunlap@oracle.com>

Building CCISS SCSI tape support in-kernel when SCSI=m causes build errors,
so require SCSI support to be =y or same as CCISS SCSI tape support.

drivers/built-in.o: In function `cciss_remove_one':
cciss.c:(.text+0x79d4c): undefined reference to `scsi_remove_host'
cciss.c:(.text+0x79d55): undefined reference to `scsi_host_put'
drivers/built-in.o: In function `cciss_update_non_disk_devices':
cciss.c:(.text+0x7bb54): undefined reference to `scsi_device_type'
cciss.c:(.text+0x7bcc8): undefined reference to `scsi_device_type'
cciss.c:(.text+0x7be81): undefined reference to `scsi_device_type'
cciss.c:(.text+0x7bf81): undefined reference to `scsi_device_type'
drivers/built-in.o: In function `cciss_proc_write':
cciss.c:(.text+0x7c175): undefined reference to `scsi_host_alloc'
cciss.c:(.text+0x7c1ed): undefined reference to `scsi_add_host'
cciss.c:(.text+0x7c1f9): undefined reference to `scsi_scan_host'
cciss.c:(.text+0x7c206): undefined reference to `scsi_host_put'
make: *** [.tmp_vmlinux1] Error 1

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 drivers/block/Kconfig |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- linux-2619-rc6g3.orig/drivers/block/Kconfig
+++ linux-2619-rc6g3/drivers/block/Kconfig
@@ -168,7 +168,8 @@ config BLK_CPQ_CISS_DA
 
 config CISS_SCSI_TAPE
 	bool "SCSI tape drive support for Smart Array 5xxx"
-	depends on BLK_CPQ_CISS_DA && SCSI && PROC_FS
+	depends on BLK_CPQ_CISS_DA && PROC_FS
+	depends on SCSI=y || SCSI=BLK_CPQ_CISS_DA
 	help
 	  When enabled (Y), this option allows SCSI tape drives and SCSI medium
 	  changers (tape robots) to be accessed via a Compaq 5xxx array 


---

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

* RE: [PATCH] CISS: require same SCSI module support
  2006-11-21 19:06 [PATCH] CISS: require same SCSI module support Randy Dunlap
@ 2006-11-21 21:19 ` Miller, Mike (OS Dev)
  0 siblings, 0 replies; 2+ messages in thread
From: Miller, Mike (OS Dev) @ 2006-11-21 21:19 UTC (permalink / raw)
  To: Randy Dunlap, scsi; +Cc: ISS StorageDev, akpm, linux-kernel

 

> -----Original Message-----
> From: Randy Dunlap [mailto:randy.dunlap@oracle.com] 
> Sent: Tuesday, November 21, 2006 1:06 PM
> To: scsi
> Cc: Miller, Mike (OS Dev); ISS StorageDev; akpm
> Subject: [PATCH] CISS: require same SCSI module support
> 
> From: Randy Dunlap <randy.dunlap@oracle.com>
> 
> Building CCISS SCSI tape support in-kernel when SCSI=m causes 
> build errors, so require SCSI support to be =y or same as 
> CCISS SCSI tape support.
> 
> drivers/built-in.o: In function `cciss_remove_one':
> cciss.c:(.text+0x79d4c): undefined reference to `scsi_remove_host'
> cciss.c:(.text+0x79d55): undefined reference to `scsi_host_put'
> drivers/built-in.o: In function `cciss_update_non_disk_devices':
> cciss.c:(.text+0x7bb54): undefined reference to `scsi_device_type'
> cciss.c:(.text+0x7bcc8): undefined reference to `scsi_device_type'
> cciss.c:(.text+0x7be81): undefined reference to `scsi_device_type'
> cciss.c:(.text+0x7bf81): undefined reference to `scsi_device_type'
> drivers/built-in.o: In function `cciss_proc_write':
> cciss.c:(.text+0x7c175): undefined reference to `scsi_host_alloc'
> cciss.c:(.text+0x7c1ed): undefined reference to `scsi_add_host'
> cciss.c:(.text+0x7c1f9): undefined reference to `scsi_scan_host'
> cciss.c:(.text+0x7c206): undefined reference to `scsi_host_put'
> make: *** [.tmp_vmlinux1] Error 1
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>

Acked-by: Mike Miller <mike.miller@hp.com>

> ---
>  drivers/block/Kconfig |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> --- linux-2619-rc6g3.orig/drivers/block/Kconfig
> +++ linux-2619-rc6g3/drivers/block/Kconfig
> @@ -168,7 +168,8 @@ config BLK_CPQ_CISS_DA
>  
>  config CISS_SCSI_TAPE
>  	bool "SCSI tape drive support for Smart Array 5xxx"
> -	depends on BLK_CPQ_CISS_DA && SCSI && PROC_FS
> +	depends on BLK_CPQ_CISS_DA && PROC_FS
> +	depends on SCSI=y || SCSI=BLK_CPQ_CISS_DA
>  	help
>  	  When enabled (Y), this option allows SCSI tape drives 
> and SCSI medium
>  	  changers (tape robots) to be accessed via a Compaq 5xxx array 
> 
> 
> ---
> 

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

end of thread, other threads:[~2006-11-21 21:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-21 19:06 [PATCH] CISS: require same SCSI module support Randy Dunlap
2006-11-21 21:19 ` Miller, Mike (OS Dev)

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