svn commit: r278368 - head/sys/contrib/vchiq/interface/vchiq_arm

Oleksandr Tymoshenko gonzo at FreeBSD.org
Sun Feb 8 01:12:24 UTC 2015


Author: gonzo
Date: Sun Feb  8 01:12:23 2015
New Revision: 278368
URL: https://svnweb.freebsd.org/changeset/base/278368

Log:
  Act as a bus in attach method: probe and attach devices

Modified:
  head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c

Modified: head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
==============================================================================
--- head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c	Sat Feb  7 23:25:56 2015	(r278367)
+++ head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c	Sun Feb  8 01:12:23 2015	(r278368)
@@ -171,6 +171,9 @@ bcm_vchiq_attach(device_t dev)
 
 	vchiq_init();
 
+	bus_generic_probe(dev);
+	bus_generic_attach(dev);
+
 	return (0);
 }
 


More information about the svn-src-head mailing list