m/p/smbios: remove print

This was accidentally left in there from debugging.

Change-Id: I20d9903e5d7ce67dbe171869848696a00f9711ed
Reviewed-on: https://review.monogon.dev/c/monogon/+/1517
Tested-by: Jenkins CI
Reviewed-by: Leopold Schabel <leo@monogon.tech>
diff --git a/metropolis/pkg/smbios/smbios.go b/metropolis/pkg/smbios/smbios.go
index 0749110..1c8ae69 100644
--- a/metropolis/pkg/smbios/smbios.go
+++ b/metropolis/pkg/smbios/smbios.go
@@ -122,7 +122,6 @@
 			}
 			tbl.SystemInformationRaw = &systemInfo
 		case structTypeBaseboardInformation:
-			fmt.Println(s)
 			var baseboardInfo BaseboardInformationRaw
 			if err := UnmarshalStructureRaw(s, &baseboardInfo); err != nil {
 				return nil, fmt.Errorf("failed unmarshaling Baseboard Information: %w", err)