Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Jan 2009 05:59:43 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r187878 - head/sys/dev/adb
Message-ID:  <200901290559.n0T5xhmL043647@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ed
Date: Thu Jan 29 05:59:42 2009
New Revision: 187878
URL: http://svn.freebsd.org/changeset/base/187878

Log:
  Make adb_mouse use dev2unit() instead of minor().
  
  A real fix would be to migrate it to si_drv0 to store the softc
  directly, but this is the quickest way to fix it right now.

Modified:
  head/sys/dev/adb/adb_mouse.c

Modified: head/sys/dev/adb/adb_mouse.c
==============================================================================
--- head/sys/dev/adb/adb_mouse.c	Wed Jan 28 23:18:21 2009	(r187877)
+++ head/sys/dev/adb/adb_mouse.c	Thu Jan 29 05:59:42 2009	(r187878)
@@ -46,7 +46,7 @@
 
 #include "adb.h"
 
-#define CDEV_GET_SOFTC(x) devclass_get_softc(adb_mouse_devclass, minor(x) & 0x1f)
+#define CDEV_GET_SOFTC(x) devclass_get_softc(adb_mouse_devclass, dev2unit(x) & 0x1f)
 
 static int adb_mouse_probe(device_t dev);
 static int adb_mouse_attach(device_t dev);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901290559.n0T5xhmL043647>