From patchwork Fri May 31 12:00:30 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jani Nikula X-Patchwork-Id: 13681592 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 378C6C25B7C for ; Fri, 31 May 2024 12:00:52 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 137D510E67C; Fri, 31 May 2024 12:00:48 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="FsPHcO5N"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.8]) by gabe.freedesktop.org (Postfix) with ESMTPS id 00D6F10E67C; Fri, 31 May 2024 12:00:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1717156846; x=1748692846; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=kNDnXROgfcqZ7N9s79r6DNMSF3EGZX+UFuG15pvKq84=; b=FsPHcO5NX7UYbVGV7n9NCmx6Tm6jkg6JwAY9mFG7Zdtpvypy6yTcHFSu wpEJ87kjvE6PiKdJ5xTctTqM/MvYI9ddkZYEZnj/Wcq8Vb9E6rbdOH9VZ cvReAg4fnclOElKtIJmLyTxC03xoReRXIgElP1tp/w0j0jTaHEbgT8cby bMmZ3LrxleBGWqbketNXSeG4MT2XCSXovtvbs5SU5DZp8hdH+kBciBdTC zKE+9mlrdNhXCGtNbIp2eVms99y0ZRzRSQxsm9T0da4Zs6WEpJwnyYjBe bVeumjdnNiZQnZXPzSmBNh4SiUSVNSR6ABArgmmXJ8oayh8RaM5OCv1wW A==; X-CSE-ConnectionGUID: 8dPEoCmQQNaAWlCCyBFSkg== X-CSE-MsgGUID: 7m3EbjdJQ2mhfc2Y/Ed9ZQ== X-IronPort-AV: E=McAfee;i="6600,9927,11088"; a="31223851" X-IronPort-AV: E=Sophos;i="6.08,204,1712646000"; d="scan'208";a="31223851" Received: from fmviesa007.fm.intel.com ([10.60.135.147]) by fmvoesa102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 May 2024 05:00:40 -0700 X-CSE-ConnectionGUID: 3j93L+t0RVWlGApSrRGu+Q== X-CSE-MsgGUID: Hn0KHkKGSnSZVvsCJezA9w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,204,1712646000"; d="scan'208";a="36076193" Received: from bergbenj-mobl1.ger.corp.intel.com (HELO localhost) ([10.245.246.190]) by fmviesa007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 31 May 2024 05:00:37 -0700 From: Jani Nikula To: dri-devel@lists.freedesktop.org, amd-gfx@lists.freedesktop.org Cc: intel-gfx@lists.freedesktop.org, Alex Deucher , =?utf-8?q?Christian_K=C3=B6nig?= , Pan Xinhui , jani.nikula@intel.com Subject: [PATCH 0/3] drm/mst & drm/amd/display: switch to using guid_t Date: Fri, 31 May 2024 15:00:30 +0300 Message-Id: X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" We have a guid_t type for GUIDs, switch to using it instead of hand rolling buffers. Convert to guid_gen() in separate patches to pinpoint the functional changes. BR, Jani. Jani Nikula (3): drm/mst: switch to guid_t type for GUID drm/mst: switch to guid_gen() to generate valid GUIDs drm/amd/display: switch to guid_gen() to generate valid GUIDs .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 23 ++++--- drivers/gpu/drm/display/drm_dp_mst_topology.c | 67 ++++++++++--------- include/drm/display/drm_dp_mst_helper.h | 12 ++-- 3 files changed, 52 insertions(+), 50 deletions(-)