svn commit: r356276 - head/sys/arm/allwinner

Emmanuel Vadot manu at FreeBSD.org
Thu Jan 2 17:39:21 UTC 2020


Author: manu
Date: Thu Jan  2 17:39:21 2020
New Revision: 356276
URL: https://svnweb.freebsd.org/changeset/base/356276

Log:
  arm: allwinner: aw_spi: Call bus_generic_attach
  
  This is needed when the driver is compiled into the kernel.
  When compiled as a module this will be called from another
  code path as we also depend on ofw_spibus.
  
  MFC after:	1 week

Modified:
  head/sys/arm/allwinner/aw_spi.c

Modified: head/sys/arm/allwinner/aw_spi.c
==============================================================================
--- head/sys/arm/allwinner/aw_spi.c	Thu Jan  2 17:27:27 2020	(r356275)
+++ head/sys/arm/allwinner/aw_spi.c	Thu Jan  2 17:39:21 2020	(r356276)
@@ -242,7 +242,7 @@ aw_spi_attach(device_t dev)
 
 	sc->spibus = device_add_child(dev, "spibus", -1);
 
-	return (0);
+	return (bus_generic_attach(dev));
 
 fail:
 	aw_spi_detach(dev);


More information about the svn-src-head mailing list