Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2009 11:31:44 GMT
From:      Alexander Motin <mav@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 165150 for review
Message-ID:  <200906251131.n5PBViL4077731@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=165150

Change 165150 by mav@mav_mavbook on 2009/06/25 11:31:32

	Pass right argument to the intr on polling.

Affected files ...

.. //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#36 edit

Differences ...

==== //depot/projects/scottl-camlock/src/sys/dev/ahci/ahci.c#36 (text+ko) ====

@@ -1826,5 +1826,7 @@
 static void
 ahcipoll(struct cam_sim *sim)
 {
-	ahci_ch_intr(cam_sim_softc(sim));
+	struct ahci_channel *ch = (struct ahci_channel *)cam_sim_softc(sim);
+
+	ahci_ch_intr(ch->dev);
 }



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