From c934e1c8bc6d6fddb70c170a83071c253026c633 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Sat, 20 Feb 1999 00:00:00 +0000 Subject: [PATCH] Plan 9 from Bell Labs 1999-02-20 --- pc/pcmciamodem.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pc/pcmciamodem.c b/pc/pcmciamodem.c index e735c132f3b624ad313aaab5f0b6d7bbe64aa60f..cfbb0f68a9f640fbbedfcdf59777b8fc5fa65943 100644 --- a/pc/pcmciamodem.c +++ b/pc/pcmciamodem.c @@ -53,8 +53,11 @@ pcmciamodemlink(void) slot = -1; for(j = 0; modems[j]; j++){ slot = pcmspecial(modems[j], &isa); - if(slot >= 0) + if(slot >= 0){ + print("%s in pcmcia slot %d port %0xlx irq %d\n", + modems[j], slot, isa.port, isa.irq); break; + } } if(slot < 0) break;