From owner-svn-src-head@freebsd.org Wed Feb 21 16:34:05 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 286DCF13101; Wed, 21 Feb 2018 16:34:05 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C30D584E8A; Wed, 21 Feb 2018 16:34:04 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE0651B002; Wed, 21 Feb 2018 16:34:04 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1LGY4Ex063649; Wed, 21 Feb 2018 16:34:04 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1LGY4xc063647; Wed, 21 Feb 2018 16:34:04 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201802211634.w1LGY4xc063647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Wed, 21 Feb 2018 16:34:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r329729 - in head/sys/modules/spi: at45d mx25l X-SVN-Group: head X-SVN-Commit-Author: ian X-SVN-Commit-Paths: in head/sys/modules/spi: at45d mx25l X-SVN-Commit-Revision: 329729 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Feb 2018 16:34:05 -0000 Author: ian Date: Wed Feb 21 16:34:04 2018 New Revision: 329729 URL: https://svnweb.freebsd.org/changeset/base/329729 Log: Remove some files that snuck in via cut and paste. Having these compiled into the module causes the kobj method descriptors to be resolved incorrectly (by the compile-time linker instead of the kernel linker), which then leads to hours of frustrating debugging. Modified: head/sys/modules/spi/at45d/Makefile head/sys/modules/spi/mx25l/Makefile Modified: head/sys/modules/spi/at45d/Makefile ============================================================================== --- head/sys/modules/spi/at45d/Makefile Wed Feb 21 16:33:08 2018 (r329728) +++ head/sys/modules/spi/at45d/Makefile Wed Feb 21 16:34:04 2018 (r329729) @@ -9,7 +9,6 @@ SRCS= at45d.c SRCS+= \ bus_if.h \ device_if.h \ - spibus_if.c \ spibus_if.h \ .if !empty(OPT_FDT) Modified: head/sys/modules/spi/mx25l/Makefile ============================================================================== --- head/sys/modules/spi/mx25l/Makefile Wed Feb 21 16:33:08 2018 (r329728) +++ head/sys/modules/spi/mx25l/Makefile Wed Feb 21 16:34:04 2018 (r329729) @@ -9,7 +9,6 @@ SRCS= mx25l.c SRCS+= \ bus_if.h \ device_if.h \ - spibus_if.c \ spibus_if.h \ .if !empty(OPT_FDT)