diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-02-20 02:12:40 +0100 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-02-20 02:12:40 +0100 | 
| commit | 97d6a2e491c6ed08473beb2c4bac47c5cbc1201a (patch) | |
| tree | 728b931c62b22ea55a13b292f6f77930897067fd /lib/ipmi_oem.c | |
| parent | 55031e72e6c02b4ae63e9052bad1a4b40002ac18 (diff) | |
Imported Upstream version 1.8.16upstream/1.8.16
Diffstat (limited to 'lib/ipmi_oem.c')
| -rw-r--r-- | lib/ipmi_oem.c | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/lib/ipmi_oem.c b/lib/ipmi_oem.c index 89495c0..96db2ea 100644 --- a/lib/ipmi_oem.c +++ b/lib/ipmi_oem.c @@ -42,34 +42,34 @@ static int ipmi_oem_ibm(struct ipmi_intf * intf);  static struct ipmi_oem_handle ipmi_oem_list[] = {  	{ -		name:	"supermicro", -		desc:	"Supermicro IPMIv1.5 BMC with OEM LAN authentication support", -		setup:	ipmi_oem_supermicro, +		.name = "supermicro", +		.desc = "Supermicro IPMIv1.5 BMC with OEM LAN authentication support", +		.setup = ipmi_oem_supermicro,  	},  	{ -		name:	"intelwv2", -		desc:	"Intel SE7501WV2 IPMIv1.5 BMC with extra LAN communication support", +		.name = "intelwv2", +		.desc = "Intel SE7501WV2 IPMIv1.5 BMC with extra LAN communication support",  	},  	{ -		name:	"intelplus", -		desc:	"Intel IPMI 2.0 BMC with RMCP+ communication support", +		.name = "intelplus", +		.desc = "Intel IPMI 2.0 BMC with RMCP+ communication support",  	},  	{ -		name:   "icts", -		desc:   "IPMI 2.0 ICTS compliance support", +		.name = "icts", +		.desc = "IPMI 2.0 ICTS compliance support",  	},  	{ -		name:   "ibm", -		desc:   "IBM OEM support", -		setup:	ipmi_oem_ibm, +		.name = "ibm", +		.desc = "IBM OEM support", +		.setup = ipmi_oem_ibm,  	},  	{ -		name:   "i82571spt", -		desc:   "Intel 82571 MAC with integrated RMCP+ support in super pass-through mode", +		.name = "i82571spt", +		.desc = "Intel 82571 MAC with integrated RMCP+ support in super pass-through mode",  	},  	{ -		name:	"kontron", -		desc:	"Kontron OEM big buffer support" +		.name = "kontron", +		.desc = "Kontron OEM big buffer support"  	},  	{ 0 }  }; | 
