Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753346Ab1EYGeW (ORCPT ); Wed, 25 May 2011 02:34:22 -0400 Received: from mail4.comsite.net ([205.238.176.238]:48020 "EHLO mail4.comsite.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751961Ab1EYGeT (ORCPT ); Wed, 25 May 2011 02:34:19 -0400 X-Default-Received-SPF: pass (skip=forwardok (res=PASS)) x-ip-name=71.22.127.106; Subject: [PATCH 3/4] irq: remove unnecessary __ref on irq_alloc_descs From: Milton Miller Message-Id: In-Reply-To: References: To: Thomas Gleixner Cc: Date: Wed, 25 May 2011 01:34:18 -0500 X-Originating-IP: 71.22.127.106 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 998 Lines: 25 febcb0c59a (irq: Remove unnecessary bootmem code) removed the slab_is_available() conditonal call to alloc_bootmem* but missed removeing the __ref annotation. Signed-off-by: Milton Miller Index: work.git/kernel/irq/irqdesc.c =================================================================== --- work.git.orig/kernel/irq/irqdesc.c 2011-05-23 14:29:22.960588100 -0500 +++ work.git/kernel/irq/irqdesc.c 2011-05-23 14:29:27.377586564 -0500 @@ -351,8 +351,7 @@ EXPORT_SYMBOL_GPL(irq_free_descs); * * Returns the first irq number or error code */ -int __ref -irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node) +int irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node) { int start, ret; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/