You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, enum DeviceType is associated with property MemoryType and enum Type is not associated with any property.
Both are incorrect. See SMBIOS specification which these are intended to align with.
Current:
- name: MemoryType
type: enum[self.DeviceType]
description: >
Type of memory.
- name: MemoryTypeDetail
type: string
description: >
Additional detail on Memory, such as Synchronous, Static column, etc.
Proposed:
- name: MemoryType
type: enum[self.Type]
description: >
Type of memory.
- name: MemoryTypeDetail
type: enum[self.DeviceType]
description: >
Additional detail on Memory, such as Synchronous, Static column, etc.
The text was updated successfully, but these errors were encountered:
\openbmc\phosphor-dbus-interfaces\xyz\openbmc_project\Inventory\Item\Dimm.interface.yaml
Contains two enums: Type and DeviceType.
Currently, enum DeviceType is associated with property MemoryType and enum Type is not associated with any property.
Both are incorrect. See SMBIOS specification which these are intended to align with.
Current:
Proposed:
The text was updated successfully, but these errors were encountered: