From owner-svn-src-stable-11@freebsd.org Fri May 5 03:38:42 2017 Return-Path: Delivered-To: svn-src-stable-11@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 A606ED5D1B8; Fri, 5 May 2017 03:38:42 +0000 (UTC) (envelope-from sephe@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 75FE81818; Fri, 5 May 2017 03:38:42 +0000 (UTC) (envelope-from sephe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v453cfIb028766; Fri, 5 May 2017 03:38:41 GMT (envelope-from sephe@FreeBSD.org) Received: (from sephe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v453cfbD028765; Fri, 5 May 2017 03:38:41 GMT (envelope-from sephe@FreeBSD.org) Message-Id: <201705050338.v453cfbD028765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sephe set sender to sephe@FreeBSD.org using -f From: Sepherosa Ziehau Date: Fri, 5 May 2017 03:38:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r317822 - stable/11/sys/dev/hyperv/input X-SVN-Group: stable-11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-11@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 May 2017 03:38:42 -0000 Author: sephe Date: Fri May 5 03:38:41 2017 New Revision: 317822 URL: https://svnweb.freebsd.org/changeset/base/317822 Log: MFC 317821 hyperv/kbd: Channel read expects non-NULL channel argument. Sponsored by: Microsoft Modified: stable/11/sys/dev/hyperv/input/hv_kbd.c Directory Properties: stable/11/ (props changed) Modified: stable/11/sys/dev/hyperv/input/hv_kbd.c ============================================================================== --- stable/11/sys/dev/hyperv/input/hv_kbd.c Fri May 5 03:28:30 2017 (r317821) +++ stable/11/sys/dev/hyperv/input/hv_kbd.c Fri May 5 03:38:41 2017 (r317822) @@ -198,7 +198,7 @@ static void hvkbd_do_poll(hv_kbd_sc *sc, uint8_t wait) { while (!hv_kbd_prod_is_ready(sc)) { - hv_kbd_read_channel(NULL, sc); + hv_kbd_read_channel(sc->hs_chan, sc); if (!wait) break; }