avoid evtchn_init name collision in gdb

MFC after:	1 month
This commit is contained in:
Kip Macy 2008-08-19 02:31:01 +00:00
parent d1e363dd51
commit 1bdf6e36a7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181865

View File

@ -340,7 +340,7 @@ static struct cdev *evtchn_dev;
static int static int
evtchn_init(void *dummy __unused) evtchn_dev_init(void *dummy __unused)
{ {
/* XXX I believe we don't need these leaving them here for now until we /* XXX I believe we don't need these leaving them here for now until we
* have some semblance of it working * have some semblance of it working
@ -389,6 +389,6 @@ evtchn_init(void *dummy __unused)
} }
SYSINIT(evtchn_init, SI_SUB_DRIVERS, SI_ORDER_FIRST, evtchn_init, NULL); SYSINIT(evtchn_dev_init, SI_SUB_DRIVERS, SI_ORDER_FIRST, evtchn_dev_init, NULL);