From owner-svn-src-head@freebsd.org Sat Dec 30 08:16:32 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A6D8EB0CF2; Sat, 30 Dec 2017 08:16:32 +0000 (UTC) (envelope-from imp@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 mx1.freebsd.org (Postfix) with ESMTPS id 25121740A8; Sat, 30 Dec 2017 08:16:32 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBU8GVnY007529; Sat, 30 Dec 2017 08:16:31 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBU8GVFu007528; Sat, 30 Dec 2017 08:16:31 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201712300816.vBU8GVFu007528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Sat, 30 Dec 2017 08:16:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r327379 - head/sys/isa X-SVN-Group: head X-SVN-Commit-Author: imp X-SVN-Commit-Paths: head/sys/isa X-SVN-Commit-Revision: 327379 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: Sat, 30 Dec 2017 08:16:32 -0000 Author: imp Date: Sat Dec 30 08:16:31 2017 New Revision: 327379 URL: https://svnweb.freebsd.org/changeset/base/327379 Log: On further testing on actual machines with this hardware, we should only warn for devices that are attached. Add missing \n. Modified: head/sys/isa/isa_common.c Modified: head/sys/isa/isa_common.c ============================================================================== --- head/sys/isa/isa_common.c Sat Dec 30 07:59:32 2017 (r327378) +++ head/sys/isa/isa_common.c Sat Dec 30 08:16:31 2017 (r327379) @@ -573,9 +573,10 @@ isa_probe_children(device_t dev) err = device_probe_and_attach(child); if (err == 0 && idev->id_vendorid == 0 && - strcmp(kern_ident, "GENERIC") == 0) + strcmp(kern_ident, "GENERIC") == 0 && + device_is_attached(child)) device_printf(child, - "non-PNP ISA device will be removed from GENERIC in FreeBSD 12."); + "non-PNP ISA device will be removed from GENERIC in FreeBSD 12.\n"); } /*