All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Maxime Ripard <mripard@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH RFC 06/13] drm/connector: hdmi: Add support for output format
Date: Tue, 15 Aug 2023 01:17:44 +0800	[thread overview]
Message-ID: <202308150157.wnJQ3VHE-lkp@intel.com> (raw)
In-Reply-To: <20230814-kms-hdmi-connector-state-v1-6-048054df3654@kernel.org>

Hi Maxime,

[This is a private test report for your RFC patch.]
kernel test robot noticed the following build warnings:

[auto build test WARNING on 5d0c230f1de8c7515b6567d9afba1f196fb4e2f4]

url:    https://github.com/intel-lab-lkp/linux/commits/Maxime-Ripard/drm-connector-Introduce-an-HDMI-connector/20230814-215852
base:   5d0c230f1de8c7515b6567d9afba1f196fb4e2f4
patch link:    https://lore.kernel.org/r/20230814-kms-hdmi-connector-state-v1-6-048054df3654%40kernel.org
patch subject: [PATCH RFC 06/13] drm/connector: hdmi: Add support for output format
config: csky-randconfig-r002-20230814 (https://download.01.org/0day-ci/archive/20230815/202308150157.wnJQ3VHE-lkp@intel.com/config)
compiler: csky-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230815/202308150157.wnJQ3VHE-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202308150157.wnJQ3VHE-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/drm_hdmi_connector.c:242:1: warning: no previous prototype for 'drm_hdmi_connector_get_output_format_name' [-Wmissing-prototypes]
     242 | drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt)
         | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


vim +/drm_hdmi_connector_get_output_format_name +242 drivers/gpu/drm/drm_hdmi_connector.c

   233	
   234	/*
   235	 * drm_hdmi_connector_get_output_format_name() - Return a string for HDMI connector output format
   236	 * @fmt: Output format to compute name of
   237	 *
   238	 * Returns: the name of the output format, or NULL if the type is not
   239	 * valid.
   240	 */
   241	const char *
 > 242	drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt)
   243	{
   244		if (fmt >= ARRAY_SIZE(output_format_str))
   245			return NULL;
   246	
   247		return output_format_str[fmt];
   248	}
   249	EXPORT_SYMBOL(drm_hdmi_connector_get_output_format_name);
   250	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2023-08-14 17:18 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-14 13:56 [PATCH RFC 00/13] drm/connector: Create HDMI Connector infrastructure Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 01/13] drm/connector: Introduce an HDMI connector Maxime Ripard
2023-08-15  9:19   ` Jani Nikula
2023-08-14 13:56 ` [PATCH RFC 02/13] drm/connector: hdmi: Create a custom state Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 03/13] drm/connector: hdmi: Add Broadcast RGB property Maxime Ripard
2023-08-14 14:46   ` Simon Ser
2023-08-14 14:46     ` Simon Ser
2023-08-14 13:56 ` [PATCH RFC 04/13] drm/connector: hdmi: Add helper to get the RGB range Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 05/13] drm/connector: hdmi: Add output BPC to the connector state Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 06/13] drm/connector: hdmi: Add support for output format Maxime Ripard
2023-08-14 17:17   ` kernel test robot [this message]
2023-08-14 13:56 ` [PATCH RFC 07/13] drm/connector: hdmi: Calculate TMDS character rate Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 08/13] drm/connector: hdmi: Add custom hook to filter " Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 09/13] drm/connector: hdmi: Compute bpc and format automatically Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 10/13] drm/connector: hdmi: Add Infoframes generation Maxime Ripard
2023-08-15 11:20   ` Dave Stevenson
2023-08-15 11:20     ` Dave Stevenson
2023-08-14 13:56 ` [PATCH RFC 11/13] drm/connector: hdmi: Create Infoframe DebugFS entries Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 12/13] drm/vc4: hdmi: Create destroy state implementation Maxime Ripard
2023-08-14 13:56 ` [PATCH RFC 13/13] drm/vc4: hdmi: Switch to HDMI connector Maxime Ripard
2023-08-14 17:58   ` kernel test robot
2023-08-22 10:22   ` kernel test robot
2023-08-16  8:43 ` [PATCH RFC 00/13] drm/connector: Create HDMI Connector infrastructure Hans Verkuil
2023-08-22 14:16 ` Daniel Vetter
2023-08-22 14:16   ` Daniel Vetter
2023-08-22 14:35   ` Maxime Ripard
2023-08-22 14:41     ` Daniel Vetter
2023-08-22 14:41       ` Daniel Vetter
2023-08-22 14:51     ` Jani Nikula
2023-08-22 15:05       ` Daniel Vetter
2023-08-22 15:05         ` Daniel Vetter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202308150157.wnJQ3VHE-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=mripard@kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.