Skip to content

Commit

Permalink
fix(lib/rep/gpu/linux/generic): use gpudesc
Browse files Browse the repository at this point in the history
otherwise, it's hard to tell that it's a gpu report...
  • Loading branch information
onkoe committed Oct 29, 2024
1 parent 28ba954 commit 0ae9c24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libghr/src/report/components/gpu/linux/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ pub(super) async fn gpu(path: &Path) -> GhrResult<ComponentInfo> {
class,
vendor_id,
status: None,
desc: ComponentDescription::None,
desc: ComponentDescription::GpuDescription(GpuDescription {
clock_speed: None,
video_memory: None,
video_memory_speed: None,
}),
})
}

0 comments on commit 0ae9c24

Please sign in to comment.