Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/external/bsd/drm2/drm drm_stat: fix device minor calcula...
details: https://anonhg.NetBSD.org/src/rev/6e03b24f3023
branches: trunk
changeset: 357949:6e03b24f3023
user: jmcneill <jmcneill%NetBSD.org@localhost>
date: Tue Dec 05 19:13:52 2017 +0000
description:
drm_stat: fix device minor calculation, ok riastradh@
diffstat:
sys/external/bsd/drm2/drm/drm_drv.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 674b97a737c7 -r 6e03b24f3023 sys/external/bsd/drm2/drm/drm_drv.c
--- a/sys/external/bsd/drm2/drm/drm_drv.c Tue Dec 05 18:04:21 2017 +0000
+++ b/sys/external/bsd/drm2/drm/drm_drv.c Tue Dec 05 19:13:52 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: drm_drv.c,v 1.19 2017/11/30 20:25:55 christos Exp $ */
+/* $NetBSD: drm_drv.c,v 1.20 2017/12/05 19:13:52 jmcneill Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: drm_drv.c,v 1.19 2017/11/30 20:25:55 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: drm_drv.c,v 1.20 2017/12/05 19:13:52 jmcneill Exp $");
#include <sys/param.h>
#include <sys/types.h>
@@ -586,7 +586,7 @@
struct drm_file *const file = fp->f_data;
struct drm_minor *const dminor = file->minor;
const dev_t devno = makedev(cdevsw_lookup_major(&drm_cdevsw),
- 64*dminor->index + dminor->type);
+ 64*dminor->type + dminor->index);
(void)memset(st, 0, sizeof(*st));
Home |
Main Index |
Thread Index |
Old Index