aboutsummaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2019-01-24 14:45:03 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-01-30 15:24:45 +0100
commitc4a46acf1db3ce547d290c29e55b3476c78dd76c (patch)
tree973251c3d8d3ae7c9e38d00bb72644e35a2320c0 /samples
parentmei: me: add ice lake point device id. (diff)
downloadlinux-dev-c4a46acf1db3ce547d290c29e55b3476c78dd76c.tar.xz
linux-dev-c4a46acf1db3ce547d290c29e55b3476c78dd76c.zip
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: <stable@vger.kernel.org> #v4.9+ Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'samples')
-rw-r--r--samples/mei/mei-amt-version.c2
1 files changed, 1 insertions, 1 deletions
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;