From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6AC4D3101A2 for ; Thu, 7 May 2026 12:46:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.167.242.64 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778157973; cv=none; b=tDbIXyWgLXPYBcV5sbXFuaLHuRj6uGZdeUEm1+ntlutbCb0S5OY5+8ydY7fs9StPsdqBqcj72z44U4qU6BS9Ddco/6YO6kyULBWujUbPXORUNMgOQnoCCkkmCEBvTCP8YGDuD/CX3fN6Xjels/fIiKqjO04e1ygSj7jDTDjtBo4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778157973; c=relaxed/simple; bh=OjaV5oD1FNxrXujZALZ/Y7K3nB/7+UYzdXNndiYpU8E=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=i3NtCjR8rVeZeqDC3Fih5N+i52TpryXJ5VNZxkg3AzY4tGZxd1BtF8GY2ukHHmgbsCaGtbswQGXsEnHBKcgBtBfOUUXUWBQbc7bVJKePA4gNJgKZXULYQJtxM8c4DUNdAwhogM/EU6rvO65gMRzqTiANl3GCSTE9OphPiuo9FPM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=ideasonboard.com; spf=pass smtp.mailfrom=ideasonboard.com; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b=ZIHd+Mfa; arc=none smtp.client-ip=213.167.242.64 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=ideasonboard.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ideasonboard.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="ZIHd+Mfa" Received: from ideasonboard.com (93-46-82-201.ip106.fastwebnet.it [93.46.82.201]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 5F06F664; Thu, 7 May 2026 14:46:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1778157965; bh=OjaV5oD1FNxrXujZALZ/Y7K3nB/7+UYzdXNndiYpU8E=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZIHd+Mfafi3OZ5aob2r01CocLvj9Nasc8eMbvBwcCc9PA1NB3Jgu1ybYXrZPiGNze oG9tEVOerORWyReZJFNY9K8kxkWeIywVQTGGyJV7Qz5nMCFczoLRN/okm7X6ZL/HKg E3COW3DNW+sD8PFM87jYu9s1kc7i2a5FQzPTMrbA= Date: Thu, 7 May 2026 14:46:06 +0200 From: Jacopo Mondi To: Laurent Pinchart Cc: linux-media@vger.kernel.org, Sakari Ailus Subject: Re: [PATCH 1/2] media: mc-entity: Fix documentation typo in function name Message-ID: References: <20260506165438.1767378-1-laurent.pinchart@ideasonboard.com> Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20260506165438.1767378-1-laurent.pinchart@ideasonboard.com> Hi Laurent On Wed, May 06, 2026 at 07:54:37PM +0300, Laurent Pinchart wrote: > The media_entity_pads_init() function name is misspelled. Fix it. > > Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Thanks j > --- > include/media/media-entity.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/media/media-entity.h b/include/media/media-entity.h > index b91ff6f8c3bb..904f61c14dc1 100644 > --- a/include/media/media-entity.h > +++ b/include/media/media-entity.h > @@ -726,7 +726,7 @@ int media_entity_pads_init(struct media_entity *entity, u16 num_pads, > * the entity (currently, it does nothing). > * > * Calling media_entity_cleanup() on a media_entity whose memory has been > - * zeroed but that has not been initialized with media_entity_pad_init() is > + * zeroed but that has not been initialized with media_entity_pads_init() is > * valid and is a no-op. > */ > #if IS_ENABLED(CONFIG_MEDIA_CONTROLLER) > > base-commit: 3cd9b7011519c3fffffb7b6752fc7603be52dc1d > -- > Regards, > > Laurent Pinchart > >