From owner-svn-src-all@freebsd.org Sun Sep 20 15:11:54 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 630983E4E13; Sun, 20 Sep 2020 15:11:54 +0000 (UTC) (envelope-from mmel@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BvWJB25KBz4fqf; Sun, 20 Sep 2020 15:11:54 +0000 (UTC) (envelope-from mmel@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 142071EEE9; Sun, 20 Sep 2020 15:11:54 +0000 (UTC) (envelope-from mmel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08KFBr5A060642; Sun, 20 Sep 2020 15:11:53 GMT (envelope-from mmel@FreeBSD.org) Received: (from mmel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08KFBrCk059680; Sun, 20 Sep 2020 15:11:53 GMT (envelope-from mmel@FreeBSD.org) Message-Id: <202009201511.08KFBrCk059680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmel set sender to mmel@FreeBSD.org using -f From: Michal Meloun Date: Sun, 20 Sep 2020 15:11:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r365926 - in head/sys: arm/include mips/include powerpc/include riscv/include x86/include X-SVN-Group: head X-SVN-Commit-Author: mmel X-SVN-Commit-Paths: in head/sys: arm/include mips/include powerpc/include riscv/include x86/include X-SVN-Commit-Revision: 365926 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Sep 2020 15:11:54 -0000 Author: mmel Date: Sun Sep 20 15:11:52 2020 New Revision: 365926 URL: https://svnweb.freebsd.org/changeset/base/365926 Log: Add missing assignment forgotten in r365899 Noticed by: mav MFC after: 1 month MFC with: r365899 Modified: head/sys/arm/include/bus.h head/sys/mips/include/bus.h head/sys/powerpc/include/bus.h head/sys/riscv/include/bus.h head/sys/x86/include/bus.h Modified: head/sys/arm/include/bus.h ============================================================================== --- head/sys/arm/include/bus.h Sun Sep 20 12:31:48 2020 (r365925) +++ head/sys/arm/include/bus.h Sun Sep 20 15:11:52 2020 (r365926) @@ -754,6 +754,7 @@ void generic_bs_unimplemented(void); { \ type tmp; \ tmp = bus_space_read_##width(tag, hnd, offset); \ + *value = (type)tmp; \ return (0); \ } BUS_PEEK_FUNC(1, uint8_t) Modified: head/sys/mips/include/bus.h ============================================================================== --- head/sys/mips/include/bus.h Sun Sep 20 12:31:48 2020 (r365925) +++ head/sys/mips/include/bus.h Sun Sep 20 15:11:52 2020 (r365926) @@ -696,6 +696,7 @@ void __bs_c(f,_bs_c_8) (void *t, bus_space_handle_t bs { \ type tmp; \ tmp = bus_space_read_##width(tag, hnd, offset); \ + *value = (type)tmp; \ return (0); \ } BUS_PEEK_FUNC(1, uint8_t) Modified: head/sys/powerpc/include/bus.h ============================================================================== --- head/sys/powerpc/include/bus.h Sun Sep 20 12:31:48 2020 (r365925) +++ head/sys/powerpc/include/bus.h Sun Sep 20 15:11:52 2020 (r365926) @@ -469,6 +469,7 @@ extern struct bus_space bs_le_tag; { \ type tmp; \ tmp = bus_space_read_##width(tag, hnd, offset); \ + *value = (type)tmp; \ return (0); \ } BUS_PEEK_FUNC(1, uint8_t) Modified: head/sys/riscv/include/bus.h ============================================================================== --- head/sys/riscv/include/bus.h Sun Sep 20 12:31:48 2020 (r365925) +++ head/sys/riscv/include/bus.h Sun Sep 20 15:11:52 2020 (r365926) @@ -458,6 +458,7 @@ struct bus_space { { \ type tmp; \ tmp = bus_space_read_##width(tag, hnd, offset); \ + *value = (type)tmp; \ return (0); \ } BUS_PEEK_FUNC(1, uint8_t) Modified: head/sys/x86/include/bus.h ============================================================================== --- head/sys/x86/include/bus.h Sun Sep 20 12:31:48 2020 (r365925) +++ head/sys/x86/include/bus.h Sun Sep 20 15:11:52 2020 (r365926) @@ -1096,6 +1096,7 @@ bus_space_barrier(bus_space_tag_t tag __unused, bus_sp { \ type tmp; \ tmp = bus_space_read_##width(tag, hnd, offset); \ + *value = (type)tmp; \ return (0); \ } BUS_PEEK_FUNC(1, uint8_t)