diff options
| author | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
| commit | 62910554656cdcd6b6f84a5154c4155aae4ca231 (patch) | |
| tree | dcf14004f6fd2ef7154362ff948bfeba0f3ea92d /drivers/net/e1000e/param.c | |
| parent | 22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff) | |
| parent | ab9304717f7624c41927f442e6b6d418b2d8b3e4 (diff) | |
| download | olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.tar.xz olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.zip  | |
Merge branch 'master' of /repos/git/net-next-2.6
Conflicts:
	Documentation/feature-removal-schedule.txt
	net/ipv6/netfilter/ip6t_REJECT.c
	net/netfilter/xt_limit.c
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'drivers/net/e1000e/param.c')
| -rw-r--r-- | drivers/net/e1000e/param.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/net/e1000e/param.c b/drivers/net/e1000e/param.c index 2e399778cae..f775a481063 100644 --- a/drivers/net/e1000e/param.c +++ b/drivers/net/e1000e/param.c @@ -248,7 +248,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  	}  	{ /* Transmit Interrupt Delay */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = range_option,  			.name = "Transmit Interrupt Delay",  			.err  = "using default of " @@ -267,7 +267,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Transmit Absolute Interrupt Delay */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = range_option,  			.name = "Transmit Absolute Interrupt Delay",  			.err  = "using default of " @@ -305,7 +305,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Receive Absolute Interrupt Delay */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = range_option,  			.name = "Receive Absolute Interrupt Delay",  			.err  = "using default of " @@ -324,7 +324,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Interrupt Throttling Rate */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = range_option,  			.name = "Interrupt Throttling Rate (ints/sec)",  			.err  = "using default of " @@ -399,7 +399,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Smart Power Down */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = enable_option,  			.name = "PHY Smart Power Down",  			.err  = "defaulting to Disabled", @@ -415,7 +415,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* CRC Stripping */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = enable_option,  			.name = "CRC Stripping",  			.err  = "defaulting to enabled", @@ -432,7 +432,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Kumeran Lock Loss Workaround */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = enable_option,  			.name = "Kumeran Lock Loss Workaround",  			.err  = "defaulting to Enabled", @@ -452,7 +452,7 @@ void __devinit e1000e_check_options(struct e1000_adapter *adapter)  		}  	}  	{ /* Write-protect NVM */ -		const struct e1000_option opt = { +		static const struct e1000_option opt = {  			.type = enable_option,  			.name = "Write-protect NVM",  			.err  = "defaulting to Enabled",  |