Use <sys/ for bus.h and intr.h

This commit is contained in:
matt 2011-08-01 23:01:40 +00:00
parent 65d8c9c17f
commit 0fb6e91c9f
2 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ralink_eth.c,v 1.2 2011/07/28 15:38:49 matt Exp $ */
/* $NetBSD: ralink_eth.c,v 1.3 2011/08/01 23:01:40 matt Exp $ */
/*-
* Copyright (c) 2011 CradlePoint Technology, Inc.
* All rights reserved.
@ -29,14 +29,16 @@
/* ralink_eth.c -- Ralink Ethernet Driver */
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ralink_eth.c,v 1.2 2011/07/28 15:38:49 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: ralink_eth.c,v 1.3 2011/08/01 23:01:40 matt Exp $");
#include <sys/param.h>
#include <sys/bus.h>
#include <sys/callout.h>
#include <sys/device.h>
#include <sys/endian.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/intr.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/mbuf.h>
@ -53,9 +55,6 @@ __KERNEL_RCSID(0, "$NetBSD: ralink_eth.c,v 1.2 2011/07/28 15:38:49 matt Exp $");
#include <net/bpf.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
#include <dev/mii/mii_bitbang.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ralink_var.h,v 1.2 2011/07/28 15:38:49 matt Exp $ */
/* $NetBSD: ralink_var.h,v 1.3 2011/08/01 23:01:40 matt Exp $ */
/*-
* Copyright (c) 2011 CradlePoint Technology, Inc.
* All rights reserved.
@ -29,7 +29,7 @@
#ifndef _RALINK_VAR_H_
#define _RALINK_VAR_H_
#include <machine/bus.h>
#include <sys/bus.h>
extern void ralink_com_early(int);