Date: Fri, 25 Oct 2019 09:24:41 +0000 (UTC) From: Andriy Gapon <avg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r354064 - stable/11/sys/dev/gpio Message-ID: <201910250924.x9P9Ofeu008240@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: avg Date: Fri Oct 25 09:24:41 2019 New Revision: 354064 URL: https://svnweb.freebsd.org/changeset/base/354064 Log: MFC r353727: gpioiic: add the detach method Modified: stable/11/sys/dev/gpio/gpioiic.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/dev/gpio/gpioiic.c ============================================================================== --- stable/11/sys/dev/gpio/gpioiic.c Fri Oct 25 09:23:53 2019 (r354063) +++ stable/11/sys/dev/gpio/gpioiic.c Fri Oct 25 09:24:41 2019 (r354064) @@ -141,6 +141,15 @@ gpioiic_attach(device_t dev) return (0); } +static int +gpioiic_detach(device_t dev) +{ + + bus_generic_detach(dev); + device_delete_children(dev); + return (0); +} + /* * Reset bus by setting SDA first and then SCL. * Must always be called with gpio bus locked. @@ -239,7 +248,7 @@ static device_method_t gpioiic_methods[] = { /* Device interface */ DEVMETHOD(device_probe, gpioiic_probe), DEVMETHOD(device_attach, gpioiic_attach), - DEVMETHOD(device_detach, bus_generic_detach), + DEVMETHOD(device_detach, gpioiic_detach), /* iicbb interface */ DEVMETHOD(iicbb_setsda, gpioiic_setsda),
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910250924.x9P9Ofeu008240>