projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83cdb2c
)
platform/x86: mlx-platform: Add support for new VMOD0007 board name
author
Vadim Pasternak
<vadimp@mellanox.com>
Wed, 12 Dec 2018 23:59:16 +0000
(23:59 +0000)
committer
Darren Hart (VMware)
<dvhart@infradead.org>
Sat, 26 Jan 2019 19:08:25 +0000
(11:08 -0800)
Add support for new Mellanox system type MSN3700C, which is
a cost reduced flavor of the MSN37 system class.
Signed-off-by: Vadim Pasternak <vadimp@mellanox.com>
Signed-off-by: Darren Hart (VMware) <dvhart@infradead.org>
drivers/platform/x86/mlx-platform.c
patch
|
blob
|
history
diff --git
a/drivers/platform/x86/mlx-platform.c
b/drivers/platform/x86/mlx-platform.c
index 73efb12a420ac6fa4607d2aac7859a66de24bcc6..aa3311971be6e2dc6e629487039645e6c20c57a0 100644
(file)
--- a/
drivers/platform/x86/mlx-platform.c
+++ b/
drivers/platform/x86/mlx-platform.c
@@
-1691,6
+1691,13
@@
static const struct dmi_system_id mlxplat_dmi_table[] __initconst = {
DMI_MATCH(DMI_PRODUCT_NAME, "MSN34"),
},
},
+ {
+ .callback = mlxplat_dmi_qmb7xx_matched,
+ .matches = {
+ DMI_MATCH(DMI_BOARD_VENDOR, "Mellanox Technologies"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "MSN38"),
+ },
+ },
{
.callback = mlxplat_dmi_default_matched,
.matches = {
@@
-1721,6
+1728,12
@@
static const struct dmi_system_id mlxplat_dmi_table[] __initconst = {
DMI_MATCH(DMI_BOARD_NAME, "VMOD0005"),
},
},
+ {
+ .callback = mlxplat_dmi_qmb7xx_matched,
+ .matches = {
+ DMI_MATCH(DMI_BOARD_NAME, "VMOD0007"),
+ },
+ },
{ }
};