From patchwork Sun Aug 8 09:07:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Santosh Shilimkar X-Patchwork-Id: 118216 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o7898Lig000506 for ; Sun, 8 Aug 2010 09:08:21 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751582Ab0HHJIK (ORCPT ); Sun, 8 Aug 2010 05:08:10 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:49431 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751301Ab0HHJII (ORCPT ); Sun, 8 Aug 2010 05:08:08 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id o78982cs013778 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 8 Aug 2010 04:08:05 -0500 Received: from linfarm476.india.ti.com (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id o7897xse013262; Sun, 8 Aug 2010 14:38:00 +0530 (IST) Received: from linfarm476.india.ti.com (localhost [127.0.0.1]) by linfarm476.india.ti.com (8.12.11/8.12.11) with ESMTP id o7897xX5017383; Sun, 8 Aug 2010 14:37:59 +0530 Received: (from a0393909@localhost) by linfarm476.india.ti.com (8.12.11/8.12.11/Submit) id o7897wkI017379; Sun, 8 Aug 2010 14:37:58 +0530 From: Santosh Shilimkar To: linux-bluetooth@vger.kernel.org Cc: linux-omap@vger.kernel.org, Santosh Shilimkar , Marcel Holtmann Subject: [PATCH] net: bluetooth: Fix build error from rfcomm/tty.c Date: Sun, 8 Aug 2010 14:37:58 +0530 Message-Id: <1281258478-17335-1-git-send-email-santosh.shilimkar@ti.com> X-Mailer: git-send-email 1.5.6.6 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sun, 08 Aug 2010 09:08:21 +0000 (UTC) diff --git a/net/bluetooth/rfcomm/tty.c b/net/bluetooth/rfcomm/tty.c index 026205c..befc3a5 100644 --- a/net/bluetooth/rfcomm/tty.c +++ b/net/bluetooth/rfcomm/tty.c @@ -1183,7 +1183,7 @@ int __init rfcomm_init_ttys(void) return 0; } -void __exit rfcomm_cleanup_ttys(void) +void rfcomm_cleanup_ttys(void) { tty_unregister_driver(rfcomm_tty_driver); put_tty_driver(rfcomm_tty_driver);