From owner-svn-src-head@freebsd.org Tue Apr 24 13:07:18 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 36E58FA394C; Tue, 24 Apr 2018 13:07:18 +0000 (UTC) (envelope-from eadler@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 DB7ED800B1; Tue, 24 Apr 2018 13:07:17 +0000 (UTC) (envelope-from eadler@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 D1974137A9; Tue, 24 Apr 2018 13:07:17 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3OD7HGD006311; Tue, 24 Apr 2018 13:07:17 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3OD7Hi7006309; Tue, 24 Apr 2018 13:07:17 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201804241307.w3OD7Hi7006309@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Tue, 24 Apr 2018 13:07:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r332931 - in head/sys: conf dev/amdsbwd X-SVN-Group: head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: in head/sys: conf dev/amdsbwd X-SVN-Commit-Revision: 332931 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: Tue, 24 Apr 2018 13:07:18 -0000 Author: eadler Date: Tue Apr 24 13:07:17 2018 New Revision: 332931 URL: https://svnweb.freebsd.org/changeset/base/332931 Log: [amdsbwd] teach amdsbwd that it has options AMDSBWD_DEBUG was previously checked for as a #define but it was not possible to define it Reviewed by: kevans Discussed with: kenm Modified: head/sys/conf/options head/sys/dev/amdsbwd/amdsbwd.c Modified: head/sys/conf/options ============================================================================== --- head/sys/conf/options Tue Apr 24 12:50:21 2018 (r332930) +++ head/sys/conf/options Tue Apr 24 13:07:17 2018 (r332931) @@ -1006,3 +1006,6 @@ EKCD opt_ekcd.h # NVME options NVME_USE_NVD opt_nvme.h + +# amdsbwd options +AMDSBWD_DEBUG opt_amdsbwd.h Modified: head/sys/dev/amdsbwd/amdsbwd.c ============================================================================== --- head/sys/dev/amdsbwd/amdsbwd.c Tue Apr 24 12:50:21 2018 (r332930) +++ head/sys/dev/amdsbwd/amdsbwd.c Tue Apr 24 13:07:17 2018 (r332931) @@ -49,6 +49,8 @@ #include __FBSDID("$FreeBSD$"); +#include "opt_amdsbwd.h" + #include #include #include