Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Jun 2012 21:38:36 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r236928 - stable/9/sys/dev/pci
Message-ID:  <201206112138.q5BLcaTd011756@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Mon Jun 11 21:38:36 2012
New Revision: 236928
URL: http://svn.freebsd.org/changeset/base/236928

Log:
  MFC r235846:
  Add 'drmn' device as another drm child, to allow drm2 drivers to live
  in parallel with drm1.

Modified:
  stable/9/sys/dev/pci/vga_pci.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/pci/vga_pci.c
==============================================================================
--- stable/9/sys/dev/pci/vga_pci.c	Mon Jun 11 21:35:27 2012	(r236927)
+++ stable/9/sys/dev/pci/vga_pci.c	Mon Jun 11 21:38:36 2012	(r236928)
@@ -105,6 +105,7 @@ vga_pci_attach(device_t dev)
 
 	/* Always create a drm child for now to make it easier on drm. */
 	device_add_child(dev, "drm", -1);
+	device_add_child(dev, "drmn", -1);
 	bus_generic_attach(dev);
 	return (0);
 }



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