From patchwork Thu May 6 18:15:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 51858 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 963B8B7D64 for ; Fri, 7 May 2010 04:16:14 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752758Ab0EFSQM (ORCPT ); Thu, 6 May 2010 14:16:12 -0400 Received: from mail.dev.rtsoft.ru ([213.79.90.226]:44588 "HELO mail.dev.rtsoft.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752448Ab0EFSQM (ORCPT ); Thu, 6 May 2010 14:16:12 -0400 Received: (qmail 25205 invoked from network); 6 May 2010 18:16:18 -0000 Received: from unknown (HELO wasted.dev.rtsoft.ru) (192.168.1.70) by 0 with SMTP; 6 May 2010 18:16:18 -0000 To: jgarzik@pobox.com Subject: [PATCH] libata: kill ata_irq_on() prototype Cc: linux-ide@vger.kernel.org Content-Disposition: inline From: Sergei Shtylyov Organization: MontaVista Software Inc. Date: Thu, 6 May 2010 22:15:22 +0400 MIME-Version: 1.0 Message-Id: <201005062215.22697.sshtylyov@ru.mvista.com> Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org Commit 9363c3825ea9ad76561eb48a395349dd29211ed6 renamed ata_irq_on() to ata_sff_irq_on() but forgot to rename its prototype in "libata.h". This prototype is duplicate anyway, as the function is already declared in , so remove it... Signed-off-by: Sergei Shtylyov --- The patch is against the recent Linus' tree. drivers/ata/libata.h | 1 - 1 file changed, 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Index: linux-2.6/drivers/ata/libata.h =================================================================== --- linux-2.6.orig/drivers/ata/libata.h +++ linux-2.6/drivers/ata/libata.h @@ -204,7 +204,6 @@ static inline int sata_pmp_attach(struct #ifdef CONFIG_ATA_SFF extern void ata_dev_select(struct ata_port *ap, unsigned int device, unsigned int wait, unsigned int can_sleep); -extern u8 ata_irq_on(struct ata_port *ap); extern void ata_pio_task(struct work_struct *work); #endif /* CONFIG_ATA_SFF */