Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jul 2007 00:46:10 GMT
From:      Christopher Davis <loafier@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 123302 for review
Message-ID:  <200707110046.l6B0k9ip079755@repoman.freebsd.org>

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

Change 123302 by loafier@chrisdsoc on 2007/07/11 00:45:11

	Adjusted flags to match original.

Affected files ...

.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_mci.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_pio.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_rtc.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_spi.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_ssc.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_twi.c#3 edit
.. //depot/projects/soc2007/loafier_busalloc/arm/at91/if_ate.c#3 edit

Differences ...

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_mci.c#3 (text+ko) ====

@@ -64,14 +64,14 @@
 #define BBSZ	512
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec mci_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_pio.c#3 (text) ====

@@ -43,14 +43,14 @@
 #include <arm/at91/at91_piovar.h>
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec pio_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_rtc.c#3 (text) ====

@@ -44,14 +44,14 @@
 #include "clock_if.h"
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec rtc_res_spec[] = {
+	{SYS_RES_MEMORY, 0, RF_ACTIVE},
 	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
-	{SYS_RES_MEMORY, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_spi.c#3 (text) ====

@@ -44,14 +44,14 @@
 #include "spibus_if.h"
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec spi_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_ssc.c#3 (text) ====

@@ -39,14 +39,14 @@
 #include <arm/at91/at91_sscreg.h>
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec ssc_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/at91_twi.c#3 (text) ====

@@ -50,14 +50,14 @@
 #define TWI_FASTEST_CLOCK	90000
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec twi_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 

==== //depot/projects/soc2007/loafier_busalloc/arm/at91/if_ate.c#3 (text) ====

@@ -76,14 +76,14 @@
 #define ATE_MAX_RX_BUFFERS 64
 
 enum {
+	RES_MEM,
 	RES_IRQ,
-	RES_MEM,
 	RES_SZ
 };
 
 static struct resource_spec ate_res_spec[] = {
-	{SYS_RES_IRQ, 0, RF_ACTIVE | RF_SHARABLE},
 	{SYS_RES_MEMORY, 0, RF_ACTIVE},
+	{SYS_RES_IRQ, 0, RF_ACTIVE},
 	{-1, 0, 0}
 };
 



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