fixup_pci.c (eee598d8f3c85efc340cd7c69fbbaec64ed9b2d0) | fixup_pci.c (38d8c9940bac138b83c5aa0066f0e2623d3a3512) |
---|---|
1/*- 2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier 3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org> 4 * Copyright (c) 2000 BSDi 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 22 unchanged lines hidden (view full) --- 31 */ 32 33#include <sys/param.h> 34#include <sys/systm.h> 35#include <sys/malloc.h> 36#include <sys/kernel.h> 37#include <sys/bus.h> 38 | 1/*- 2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier 3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org> 4 * Copyright (c) 2000 BSDi 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 22 unchanged lines hidden (view full) --- 31 */ 32 33#include <sys/param.h> 34#include <sys/systm.h> 35#include <sys/malloc.h> 36#include <sys/kernel.h> 37#include <sys/bus.h> 38 |
39#include <pci/pcivar.h> 40#include <pci/pcireg.h> | 39#include <dev/pci/pcivar.h> 40#include <dev/pci/pcireg.h> |
41 42/* 43 * Chipset fixups. 44 * 45 * These routines are invoked during the probe phase for devices which 46 * typically don't have specific device drivers, but which require 47 * some cleaning up. 48 */ --- 52 unchanged lines hidden --- | 41 42/* 43 * Chipset fixups. 44 * 45 * These routines are invoked during the probe phase for devices which 46 * typically don't have specific device drivers, but which require 47 * some cleaning up. 48 */ --- 52 unchanged lines hidden --- |