[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1215946002-4775-1-git-send-email-tom.leiming@gmail.com>
Date: Sun, 13 Jul 2008 18:46:42 +0800
From: tom.leiming@...il.com
To: jbarnes@...tuousgeek.org, kristen.c.accardi@...el.com
Cc: linux-pci@...ey.karlin.mff.cuni.cz, linux-kernel@...r.kernel.org,
Ming Lei <tom.leiming@...il.com>
Subject: [PATCH] PCI:pciehp:remove unnecessary volatile in struct controller
From: Ming Lei <tom.leiming@...il.com>
Proper memory barriers have been added to order accesses
to ->cmd_busy, so volatile declaration for cmd_busy can
be removed.
Signed-off-by: Ming Lei <tom.leiming@...il.com>
---
drivers/pci/hotplug/pciehp.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/pci/hotplug/pciehp.h b/drivers/pci/hotplug/pciehp.h
index 79c9dda..5e2becd 100644
--- a/drivers/pci/hotplug/pciehp.h
+++ b/drivers/pci/hotplug/pciehp.h
@@ -96,7 +96,7 @@ struct controller {
u32 slot_cap;
u8 cap_base;
struct timer_list poll_timer;
- volatile int cmd_busy;
+ int cmd_busy;
unsigned int no_cmd_complete:1;
};
--
1.5.6.rc2.45.gdc92c
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists