Date: Sun, 10 May 2009 11:05:22 +0000 (UTC) From: Stanislav Sedov <stas@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r191961 - head/sys/arm/at91 Message-ID: <200905101105.n4AB5M4K055905@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: stas Date: Sun May 10 11:05:22 2009 New Revision: 191961 URL: http://svn.freebsd.org/changeset/base/191961 Log: - Fix build with INVARIANTS enabled. Modified: head/sys/arm/at91/at91_cfata.c Modified: head/sys/arm/at91/at91_cfata.c ============================================================================== --- head/sys/arm/at91/at91_cfata.c Sun May 10 10:32:29 2009 (r191960) +++ head/sys/arm/at91/at91_cfata.c Sun May 10 11:05:22 2009 (r191961) @@ -131,9 +131,9 @@ ata_at91_release_resource(device_t dev, struct resource *r) { - KASSERT(type == SYS_RES_IRQ && *rid == ATA_IRQ_RID, + KASSERT(type == SYS_RES_IRQ && rid == ATA_IRQ_RID, ("[at91_cfata, %d]: illegal resource request (type %u rid %u)", - __LINE__, type, *rid)); + __LINE__, type, rid)); return (0); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905101105.n4AB5M4K055905>