From mboxrd@z Thu Jan 1 00:00:00 1970 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 87564C433EF for ; Tue, 21 Dec 2021 06:21:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=U8KF2lyHLJcrCMic57w3V/vidoGCQ+ExeU7kYPnScXE=; b=PqUe1N6WHJ0N0V xj3Owx3KAsnZ6SGHviviua27W2euGlzRpUXIVWk8TRt9qR2ziPPwIKCtJbAigi126LrxWhofV+aBB cFApIblqKNTF0HcebLeM1oWV5G4WgkaoGtCV+tJnGjvkd20C9jSuuYi0OlN8WCblz/JdNK2WsW863 /98k+JoOG8ntbQo0Vti8Qghd1hOAfwvbU2Bpux9S1wiQiq+EWv+09tfIRCtzSq+Byl5k/z5so3dum +ztPDzY23DNSyKZle6b68sH14vx2U7pZzjuqNYYjm00AH+aNRuo0EBXMTxgmUJJ1Pb1Ix+H2WvD8V Vq/FzNJtNLGv0uBASU6g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mzYVx-005cUv-8E; Tue, 21 Dec 2021 06:20:45 +0000 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mzYVs-005cT3-US; Tue, 21 Dec 2021 06:20:42 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 15C6861462; Tue, 21 Dec 2021 06:20:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0DB6C36AE2; Tue, 21 Dec 2021 06:20:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1640067638; bh=75EcQm5F1ixHXA9iN5o/mzXlI2TASqOMhCOBQksqZgk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ubWJgiA0CLZZy4zwhAwGeRz1DojRQ9opUodMXkzxq5cm0nP8ELXRrZxcbCHk5Y6ZW LHkuSU9JVT84zjFgQX+WAhksSjlpad5/evKLv4FWrTKJUGfaPEvSM8/wj1M1WI/4OI vptMZ1rTGBLZ/fU3ePZlKQG1hkgp785GkaAQvRIE= Date: Tue, 21 Dec 2021 07:20:36 +0100 From: Greg KH To: Gaston Gonzalez Cc: linux-staging@lists.linux.dev, nsaenz@kernel.org, f.fainelli@gmail.com, rjui@broadcom.com, sbranden@broadcom.com, bcm-kernel-feedback-list@broadcom.com, juerg.haefliger@canonical.com, rdunlap@infradead.org, dave.stevenson@raspberrypi.com, stefan.wahren@i2se.com, unixbhaskar@gmail.com, mitaliborkar810@gmail.com, phil@raspberrypi.com, linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/4] staging: vc04_services: avoid the use of typedef for function pointers Message-ID: References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211220_222041_052394_C8D95925 X-CRM114-Status: GOOD ( 12.23 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Dec 20, 2021 at 06:29:10PM -0300, Gaston Gonzalez wrote: > This patch set removes some typedefs for function pointers in vc04_services. > > After patches 01 to 03, there are no remaining typedef under vc04_services. > Hence, the patch 04/04 updates the TODO file removing the 'remove typedefs' > task. > > Gaston Gonzalez (4): > staging: bcm2835-audio: replace function typedefs with equivalent > declaration > staging: vc04_services: replace function typedef with equivalent > declaration > staging: vc04_services: avoid the use of typedef for function pointers > staging: vc04_services: update TODO file These are not the name of the patches that you sent out at all :( Are you sure you created this properly? Something went wrong. greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel