~kris/9p

9hist

94e4a2165fe818476f141539b3d3d797e0adfe86 — David du Colombier 29 years ago 9518889
Plan 9 from Bell Labs 1997-04-12
1 files changed, 4 insertions(+), 4 deletions(-)

M pc/pci.c
M pc/pci.c => pc/pci.c +4 -4
@@ 41,7 41,7 @@ pciscan(int bno, Pcidev** list)

	maxubn = bno;
	head = tail = 0;
	for(dno = 0; dno < pcimaxdno; dno++){
	for(dno = 0; dno <= pcimaxdno; dno++){
		maxfno = 0;
		for(fno = 0; fno <= maxfno; fno++){
			/*


@@ 191,7 191,7 @@ pcicfgrw8(int tbdf, int rno, int data, int read)
	else
		type = 0x00;
	x = -1;
	if(BUSDNO(tbdf) >= pcimaxdno)
	if(BUSDNO(tbdf) > pcimaxdno)
		return x;

	lock(&pcicfglock);


@@ 248,7 248,7 @@ pcicfgrw16(int tbdf, int rno, int data, int read)
	else
		type = 0x00;
	x = -1;
	if(BUSDNO(tbdf) >= pcimaxdno)
	if(BUSDNO(tbdf) > pcimaxdno)
		return x;

	lock(&pcicfglock);


@@ 305,7 305,7 @@ pcicfgrw32(int tbdf, int rno, int data, int read)
	else
		type = 0x00;
	x = -1;
	if(BUSDNO(tbdf) >= pcimaxdno)
	if(BUSDNO(tbdf) > pcimaxdno)
		return x;

	lock(&pcicfglock);