From patchwork Mon Nov 22 01:03:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: T Dent X-Patchwork-Id: 346661 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAM1QQGi005773 for ; Mon, 22 Nov 2010 01:26:46 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756926Ab0KVBJB (ORCPT ); Sun, 21 Nov 2010 20:09:01 -0500 Received: from mail-iw0-f174.google.com ([209.85.214.174]:42017 "EHLO mail-iw0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756248Ab0KVBEK (ORCPT ); Sun, 21 Nov 2010 20:04:10 -0500 Received: by mail-iw0-f174.google.com with SMTP id 34so2211862iwn.19 for ; Sun, 21 Nov 2010 17:04:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer:in-reply-to:references; bh=8ZZUb3cz22EIFhDLUt7XYpz5ymofaLDKu/rgHAkBQ/Y=; b=gboMBJma383vjyn6ycXF3BAeT2ZdGdzivm2kZsc2JRAiFuTpLniHheh2yyhsnLxfaG /u+vaYeDkv+L8BmqcGRDzn8A5UJWsSkrLJiAZOx+M9yHgrSEvScoNgPfct2eevL/dQIs LEYPJeuu8q+hsy7zeLLA0o9ixeItfbHkKQPaI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=BulMgIG2OS8fo4D08+aU9bHC58NaMxesWT8qvoB5f0IbDpfjl3vweq+1mxhNpL5L2K s5y6Y8WR0hlvYXG82bQ0tv7orA54PLdX9uRzlBfmOaveMbbTzKyQ9g4Umn6cwWc3DsTd kQ7TMuSTTDjyxhIboSP9YsI9mkXVCFcusSZFs= Received: by 10.231.171.143 with SMTP id h15mr6057093ibz.166.1290387849786; Sun, 21 Nov 2010 17:04:09 -0800 (PST) Received: from localhost.localdomain (c-68-40-227-221.hsd1.mi.comcast.net [68.40.227.221]) by mx.google.com with ESMTPS id z4sm529915ibg.19.2010.11.21.17.04.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 21 Nov 2010 17:04:08 -0800 (PST) From: Tracey Dent To: davem@davemloft.net Cc: marcel@holtmann.org, padovan@profusion.mobi, linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, sjur.brandeland@stericsson.com, socketcan@hartkopp.net, urs.thuermann@volkswagen.de, socketcan-core@lists.berlios.de, sage@newdream.net, ceph-devel@vger.kernel.org, wang840925@gmail.com, jlayton@redhat.com, kaber@trash.net, pekkas@netcore.fi, linux-kernel@vger.kernel.org, netfilter-devel@vger.kernel.org, netfilter@vger.kernel.org, samuel@sortiz.org, Tracey Dent Subject: [PATCH 09/17] Net: irda: ircomm: Makefile: Remove deprecated kbuild goal defintions Date: Sun, 21 Nov 2010 20:03:20 -0500 Message-Id: <1290387808-2239-10-git-send-email-tdent48227@gmail.com> X-Mailer: git-send-email 1.7.3.2.245.g03276 In-Reply-To: <1290387808-2239-1-git-send-email-tdent48227@gmail.com> References: <1290387808-2239-1-git-send-email-tdent48227@gmail.com> Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Mon, 22 Nov 2010 01:26:47 +0000 (UTC) diff --git a/net/irda/ircomm/Makefile b/net/irda/ircomm/Makefile index 4868945..ab23b5b 100644 --- a/net/irda/ircomm/Makefile +++ b/net/irda/ircomm/Makefile @@ -4,5 +4,5 @@ obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o -ircomm-objs := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o -ircomm-tty-objs := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o +ircomm-y := ircomm_core.o ircomm_event.o ircomm_lmp.o ircomm_ttp.o +ircomm-tty-y := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o