aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/NCR53c406a.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/NCR53c406a.c')
-rw-r--r--drivers/scsi/NCR53c406a.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/NCR53c406a.c b/drivers/scsi/NCR53c406a.c
index ae37d3ab9c4a..8472c5359023 100644
--- a/drivers/scsi/NCR53c406a.c
+++ b/drivers/scsi/NCR53c406a.c
@@ -213,16 +213,16 @@ static void *addresses[] = {
213 (void *) 0xd8000, 213 (void *) 0xd8000,
214 (void *) 0xc8000 214 (void *) 0xc8000
215}; 215};
216#define ADDRESS_COUNT (sizeof( addresses ) / sizeof( unsigned )) 216#define ADDRESS_COUNT ARRAY_SIZE(addresses)
217#endif /* USE_BIOS */ 217#endif /* USE_BIOS */
218 218
219/* possible i/o port addresses */ 219/* possible i/o port addresses */
220static unsigned short ports[] = { 0x230, 0x330, 0x280, 0x290, 0x330, 0x340, 0x300, 0x310, 0x348, 0x350 }; 220static unsigned short ports[] = { 0x230, 0x330, 0x280, 0x290, 0x330, 0x340, 0x300, 0x310, 0x348, 0x350 };
221#define PORT_COUNT (sizeof( ports ) / sizeof( unsigned short )) 221#define PORT_COUNT ARRAY_SIZE(ports)
222 222
223/* possible interrupt channels */ 223/* possible interrupt channels */
224static unsigned short intrs[] = { 10, 11, 12, 15 }; 224static unsigned short intrs[] = { 10, 11, 12, 15 };
225#define INTR_COUNT (sizeof( intrs ) / sizeof( unsigned short )) 225#define INTR_COUNT ARRAY_SIZE(intrs)
226 226
227/* signatures for NCR 53c406a based controllers */ 227/* signatures for NCR 53c406a based controllers */
228#if USE_BIOS 228#if USE_BIOS
@@ -236,7 +236,7 @@ struct signature {
236 { 236 {
237"Copyright (C) Acculogic, Inc.\r\n2.8M Diskette Extension Bios ver 4.04.03 03/01/1993", 61, 82},}; 237"Copyright (C) Acculogic, Inc.\r\n2.8M Diskette Extension Bios ver 4.04.03 03/01/1993", 61, 82},};
238 238
239#define SIGNATURE_COUNT (sizeof( signatures ) / sizeof( struct signature )) 239#define SIGNATURE_COUNT ARRAY_SIZE(signatures)
240#endif /* USE_BIOS */ 240#endif /* USE_BIOS */
241 241
242/* ============================================================ */ 242/* ============================================================ */