Signed-off-by: Shveta Gupta <[email protected]>
---
 dmidecode.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dmidecode.c b/dmidecode.c
index 0d3d825..ae955ce 100644
--- a/dmidecode.c
+++ b/dmidecode.c
@@ -3,6 +3,7 @@
  *
  *   Copyright (C) 2000-2002 Alan Cox <[email protected]>
  *   Copyright (C) 2002-2025 Jean Delvare <[email protected]>
+ *   Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
  *
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
@@ -2844,10 +2845,11 @@ static const char *dmi_memory_device_form_factor(u8 
code)
                "SODIMM",
                "SRIMM",
                "FB-DIMM",
-               "Die" /* 0x10 */
+               "Die",
+               "CAMM" /* 0x11 */
        };
 
-       if (code >= 0x01 && code <= 0x10)
+       if (code >= 0x01 && code <= 0x11)
                return form_factor[code - 0x01];
        return out_of_spec;
 }
-- 
2.34.1


Reply via email to