~kris/9p

9hist

2ca30abdfbe99b5959b8c4c9dc9899051b91965b — David du Colombier 26 years ago 6821bbc
Plan 9 from Bell Labs 2000-06-19
4 files changed, 6 insertions(+), 6 deletions(-)

M pc/ether2114x.c
M pc/ether79c970.c
M pc/ether82557.c
M pc/etherelnk3.c
M pc/ether2114x.c => pc/ether2114x.c +1 -1
@@ 1305,7 1305,7 @@ dec2114xpci(void)
		ctlr->pcidev = p;

		if(ioalloc(ctlr->port, p->mem[0].size, 0, "dec2114x") < 0){
			print("dec2114x: port %d in use\n", ctlr->port);
			print("dec2114x: port 0x%uX in use\n", ctlr->port);
			free(ctlr);
			continue;
		}

M pc/ether79c970.c => pc/ether79c970.c +1 -1
@@ 450,7 450,7 @@ amd79c970pci(void)
	while(p = pcimatch(p, 0x1022, 0x2000)){
		port = p->mem[0].bar & ~0x01;
		if(ioalloc(port, p->mem[0].size, 0, "amd79c970") < 0){
			print("amd79c970: port %d in use\n", port);
			print("amd79c970: port 0x%uX in use\n", port);
			continue;
		}
		amd79c970adapter(&adapter, port, p->intl, p->tbdf);

M pc/ether82557.c => pc/ether82557.c +1 -1
@@ 908,7 908,7 @@ i82557pci(void)
		 */
		port = p->mem[1].bar & ~0x01;
		if(ioalloc(port, p->mem[1].size, 0, "i82557pci") < 0){
			print("i82557pci: port %d in use\n", port);
			print("i82557pci: port 0x%uX in use\n", port);
			continue;
		}
		i82557adapter(&adapter, port, p->intl, p->tbdf);

M pc/etherelnk3.c => pc/etherelnk3.c +3 -3
@@ 1314,7 1314,7 @@ tcm509isa(void)
	 */
	while(port = activate()){
		if(ioalloc(port, 0x10, 0, "tcm509isa") < 0){
			print("tcm509isa:port %d in use\n", port);
			print("tcm509isa: port 0x%uX in use\n", port);
			continue;
		}



@@ 1376,7 1376,7 @@ tcm5XXeisa(void)
	for(slot = 1; slot < MaxEISA; slot++){
		port = slot*0x1000;
		if(ioalloc(port, 0x1000, 0, "tcm5XXeisa") < 0){
			print("tcm5XXeisa: port %d in use\n", port);
			print("tcm5XXeisa: port 0x%uX in use\n", port);
			continue;
		}
		if(ins(port+0xC80+ManufacturerID) != 0x6D50){


@@ 1410,7 1410,7 @@ tcm59Xpci(void)
	while(p = pcimatch(p, 0x10B7, 0)){
		port = p->mem[0].bar & ~0x01;
		if(ioalloc(port, p->mem[0].size, 0, "tcm59Xpci") < 0){
			print("tcm59Xpci: port %d in use\n", port);
			print("tcm59Xpci: port 0x%uX in use\n", port);
			continue;
		}
		irq = p->intl;