* [PATCH] C99 initiailzers for kernel/resource.c
@ 2003-02-12 3:01 Art Haas
0 siblings, 0 replies; only message in thread
From: Art Haas @ 2003-02-12 3:01 UTC (permalink / raw)
To: linux-kernel; +Cc: Linus Torvalds
Hi.
This patch converts the file to use C99 initializers to remove warnings
if '-W' is used and aid readability.
Art Haas
===== kernel/resource.c 1.8 vs edited =====
--- 1.8/kernel/resource.c Sun Dec 29 12:53:07 2002
+++ edited/kernel/resource.c Tue Feb 11 09:39:58 2003
@@ -15,8 +15,19 @@
#include <linux/spinlock.h>
#include <asm/io.h>
-struct resource ioport_resource = { "PCI IO", 0x0000, IO_SPACE_LIMIT, IORESOURCE_IO };
-struct resource iomem_resource = { "PCI mem", 0x00000000, 0xffffffff, IORESOURCE_MEM };
+struct resource ioport_resource = {
+ .name = "PCI IO",
+ .start = 0x0000,
+ .end = IO_SPACE_LIMIT,
+ .flags = IORESOURCE_IO
+};
+
+struct resource iomem_resource = {
+ .name = "PCI mem",
+ .start = 0x00000000,
+ .end = 0xffffffff,
+ .flags = IORESOURCE_MEM
+};
static rwlock_t resource_lock = RW_LOCK_UNLOCKED;
--
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-02-12 2:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-12 3:01 [PATCH] C99 initiailzers for kernel/resource.c Art Haas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox