Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761154AbYFIWaS (ORCPT ); Mon, 9 Jun 2008 18:30:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761695AbYFIW11 (ORCPT ); Mon, 9 Jun 2008 18:27:27 -0400 Received: from smtp4.pp.htv.fi ([213.243.153.38]:54212 "EHLO smtp4.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761682AbYFIW10 (ORCPT ); Mon, 9 Jun 2008 18:27:26 -0400 Date: Tue, 10 Jun 2008 01:26:31 +0300 From: Adrian Bunk To: Mark Salyzyn , James Bottomley Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [2.6 patch] scsi/dpt_i2o.c: fix compilation on ia64 Message-ID: <20080609222631.GX1987@cs181133002.pp.htv.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1232 Lines: 33 This patch fixes the following compile error: <-- snip --> ... CC drivers/scsi/dpt_i2o.o /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/scsi/dpt_i2o.c:83: error: 'PROC_IA64' undeclared here (not in a function) make[3]: *** [drivers/scsi/dpt_i2o.o] Error 1 <-- snip --> Reported-by: Adrian Bunk Signed-off-by: Adrian Bunk --- 631dedfbf9e2a9720dd6ecd382c0568372c3e436 diff --git a/drivers/scsi/dpt/dptsig.h b/drivers/scsi/dpt/dptsig.h index 72c8992..01cd528 100644 --- a/drivers/scsi/dpt/dptsig.h +++ b/drivers/scsi/dpt/dptsig.h @@ -92,6 +92,7 @@ typedef unsigned int sigINT; #define PROC_POWERPC 0x04 /* IBM Power PC */ #define PROC_i960 0x05 /* Intel i960 */ #define PROC_ULTRASPARC 0x06 /* SPARC processor */ +#define PROC_IA64 0x07 /* ia64 processor */ /* Specific Minimim Processor - sigBYTE dsProcessor; FLAG BITS */ /* ------------------------------------------------------------------ */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/