[PATCH] [SIS190] Constify data marked as __devinitdata

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <netdev@...>, <romieu@...>, <linux-kernel@...>
Cc: Jonas Bonn <jonas@...>
Date: Wednesday, January 30, 2008 - 6:53 am

This fixes build error as gcc complains about a "section type conflict"
due to the const __devinitdata in sis190_get_mac_addr_from_apc().
---
 drivers/net/sis190.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c
index b570402..e48e4ad 100644
--- a/drivers/net/sis190.c
+++ b/drivers/net/sis190.c
@@ -326,7 +326,7 @@ static const struct {
 	{ "SiS 191 PCI Gigabit Ethernet adapter" },
 };
 
-static struct pci_device_id sis190_pci_tbl[] __devinitdata = {
+static const struct pci_device_id sis190_pci_tbl[] __devinitdata = {
 	{ PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0190), 0, 0, 0 },
 	{ PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0191), 0, 0, 1 },
 	{ 0, },
-- 
1.5.3.8


--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] [SIS190] Constify data marked as __devinitdata, Jonas Bonn, (Wed Jan 30, 6:53 am)
Re: [PATCH] [SIS190] Constify data marked as __devinitdata, Jan Engelhardt, (Wed Jan 30, 7:23 am)
Re: [PATCH] [SIS190] Constify data marked as __devinitdata, Jan Engelhardt, (Wed Jan 30, 9:31 am)
[PATCH] [SIS190] Use _devinitconst for const data, Jonas Bonn, (Wed Jan 30, 7:57 am)
Re: [PATCH] [SIS190] Use _devinitconst for const data, Sam Ravnborg, (Wed Jan 30, 8:21 am)