Date: Tue, 1 Sep 2020 21:38:06 +0000 (UTC) From: Mateusz Guzik <mjg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r365108 - head/sys/dev/alpm Message-ID: <202009012138.081Lc660032620@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mjg Date: Tue Sep 1 21:38:06 2020 New Revision: 365108 URL: https://svnweb.freebsd.org/changeset/base/365108 Log: alpm: clean up empty lines in .c and .h files Modified: head/sys/dev/alpm/alpm.c Modified: head/sys/dev/alpm/alpm.c ============================================================================== --- head/sys/dev/alpm/alpm.c Tue Sep 1 21:37:53 2020 (r365107) +++ head/sys/dev/alpm/alpm.c Tue Sep 1 21:38:06 2020 (r365108) @@ -557,7 +557,7 @@ alpm_bwrite(device_t dev, u_char slave, char cmd, u_ch } ALPM_SMBOUTB(sc, SMBHADDR, slave & ~LSB); - + /* set the cmd and reset the * 32-byte long internal buffer */ ALPM_SMBOUTB(sc, SMBCMD, SMBWRBLOCK | SMB_BLK_CLR); @@ -598,7 +598,7 @@ alpm_bread(device_t dev, u_char slave, char cmd, u_cha } ALPM_SMBOUTB(sc, SMBHADDR, slave | LSB); - + /* set the cmd and reset the * 32-byte long internal buffer */ ALPM_SMBOUTB(sc, SMBCMD, SMBWRBLOCK | SMB_BLK_CLR); @@ -634,7 +634,7 @@ static device_method_t alpm_methods[] = { DEVMETHOD(device_probe, alpm_probe), DEVMETHOD(device_attach, alpm_attach), DEVMETHOD(device_detach, alpm_detach), - + /* smbus interface */ DEVMETHOD(smbus_callback, alpm_callback), DEVMETHOD(smbus_quick, alpm_quick), @@ -646,7 +646,6 @@ static device_method_t alpm_methods[] = { DEVMETHOD(smbus_readw, alpm_readw), DEVMETHOD(smbus_bwrite, alpm_bwrite), DEVMETHOD(smbus_bread, alpm_bread), - { 0, 0 } };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009012138.081Lc660032620>