From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9D9CC282D7 for ; Wed, 30 Jan 2019 14:26:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ADD3920882 for ; Wed, 30 Jan 2019 14:26:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1548858363; bh=1puGS6aqOEgjsb+Fq9FgN2YeFhpkL7rHQFFhZ81pCm4=; h=Subject:To:From:Date:List-ID:From; b=ROl/KBfGGDeQL7MAzJI5uATP7uBFv6vG352czn+JtscmhAv68uNDjEXor30MTrqxo 8KeNPCXnl/wCQph8oM++nml2jkUSV+AXdG6dOmawDP0EYvZEXOEjL4ZLx9GWtmd9c+ qxTsPDGLj1atw5Cmg5zOPYIBycxwpFaJIPDNsPjw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731415AbfA3O0D (ORCPT ); Wed, 30 Jan 2019 09:26:03 -0500 Received: from mail.kernel.org ([198.145.29.99]:40592 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731052AbfA3O0D (ORCPT ); Wed, 30 Jan 2019 09:26:03 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 16A9520855; Wed, 30 Jan 2019 14:26:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1548858362; bh=1puGS6aqOEgjsb+Fq9FgN2YeFhpkL7rHQFFhZ81pCm4=; h=Subject:To:From:Date:From; b=HhD0McTSCW9HZCyl5bGSH+29qREbCxKwjiNHLLDH7oxK0c1H8zXhpQLlHeWVp46X/ 8jFtUlH+DU56Jbw1Zbm2dN3J1KVXUKHhlLpFOZRvLaOefICzMxrVSQGBkwwc45EZNR 99E1022EZ+jG/LpPKuNbQ2woq++ejvMgCyPFE82k= Subject: patch "samples: mei: use /dev/mei0 instead of /dev/mei" added to char-misc-linus To: tomas.winkler@intel.com, gregkh@linuxfoundation.org, stable@vger.kernel.org From: Date: Wed, 30 Jan 2019 15:25:51 +0100 Message-ID: <1548858351126141@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled samples: mei: use /dev/mei0 instead of /dev/mei to my char-misc git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git in the char-misc-linus branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will hopefully also be merged in Linus's tree for the next -rc kernel release. If you have any questions about this process, please let me know. >From c4a46acf1db3ce547d290c29e55b3476c78dd76c Mon Sep 17 00:00:00 2001 From: Tomas Winkler Date: Thu, 24 Jan 2019 14:45:03 +0200 Subject: samples: mei: use /dev/mei0 instead of /dev/mei The device was moved from misc device to character devices to support multiple mei devices. Cc: #v4.9+ Signed-off-by: Tomas Winkler Signed-off-by: Greg Kroah-Hartman --- samples/mei/mei-amt-version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/mei/mei-amt-version.c b/samples/mei/mei-amt-version.c index 33e67bd1dc34..32234481ad7d 100644 --- a/samples/mei/mei-amt-version.c +++ b/samples/mei/mei-amt-version.c @@ -117,7 +117,7 @@ static bool mei_init(struct mei *me, const uuid_le *guid, me->verbose = verbose; - me->fd = open("/dev/mei", O_RDWR); + me->fd = open("/dev/mei0", O_RDWR); if (me->fd == -1) { mei_err(me, "Cannot establish a handle to the Intel MEI driver\n"); goto err; -- 2.20.1