We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3392970 commit 4548f10Copy full SHA for 4548f10
drivers/gpu/drm/display/drm_dp_mst_topology.c
@@ -2698,18 +2698,10 @@ static void drm_dp_mst_link_probe_work(struct work_struct *work)
2698
static bool drm_dp_validate_guid(struct drm_dp_mst_topology_mgr *mgr,
2699
guid_t *guid)
2700
{
2701
- u64 salt;
2702
- u8 buf[UUID_SIZE];
2703
-
2704
if (!guid_is_null(guid))
2705
return true;
2706
2707
- salt = get_jiffies_64();
2708
2709
- memcpy(&buf[0], &salt, sizeof(u64));
2710
- memcpy(&buf[8], &salt, sizeof(u64));
2711
2712
- import_guid(guid, buf);
+ guid_gen(guid);
2713
2714
return false;
2715
}
0 commit comments