From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Retanubun Date: Wed, 19 Oct 2011 15:24:40 -0400 Subject: [U-Boot] [PATCH 1/2] cosmetic: Replace __FUNCTION__ with __func__ in part_efi.c In-Reply-To: <1319047487-9926-1-git-send-email-dianders@chromium.org> References: <1319047487-9926-1-git-send-email-dianders@chromium.org> Message-ID: <4E9F23F8.5000609@RuggedCom.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 10/19/11 14:04, Doug Anderson wrote: > This makes checkpatch happy. > > Signed-off-by: Doug Anderson > --- > disk/part_efi.c | 28 ++++++++++++++-------------- > 1 files changed, 14 insertions(+), 14 deletions(-) > > diff --git a/disk/part_efi.c b/disk/part_efi.c > index 0a513c6..6a139a9 100644 > --- a/disk/part_efi.c > +++ b/disk/part_efi.c > @@ -125,17 +125,17 @@ void print_part_efi(block_dev_desc_t * dev_desc) > int i = 0; > > if (!dev_desc) { > - printf("%s: Invalid Argument(s)\n", __FUNCTION__); > + printf("%s: Invalid Argument(s)\n", __func__); > return; Hi Doug, ACK, thanks for the cleanup! - Richard