{"id":884,"url":"http://patchwork.ozlabs.org/api/1.0/patches/884/?format=json","project":{"id":7,"url":"http://patchwork.ozlabs.org/api/1.0/projects/7/?format=json","name":"Linux network development","link_name":"netdev","list_id":"netdev.vger.kernel.org","list_email":"netdev@vger.kernel.org","web_url":null,"scm_url":null,"webscm_url":null},"msgid":"<1222098445-26175-3-git-send-email-remi.denis-courmont@nokia.com>","date":"2008-09-22T15:47:17","name":"[03/11] Phonet: add CONFIG_PHONET","commit_ref":null,"pull_url":null,"state":"accepted","archived":true,"hash":"060d24838d17a79e95880064a79e8e58afe5a4d4","submitter":{"id":204,"url":"http://patchwork.ozlabs.org/api/1.0/people/204/?format=json","name":"Rémi Denis-Courmont","email":"remi.denis-courmont@nokia.com"},"delegate":{"id":34,"url":"http://patchwork.ozlabs.org/api/1.0/users/34/?format=json","username":"davem","first_name":"David","last_name":"Miller","email":"davem@davemloft.net"},"mbox":"http://patchwork.ozlabs.org/project/netdev/patch/1222098445-26175-3-git-send-email-remi.denis-courmont@nokia.com/mbox/","series":[],"check":"pending","checks":"http://patchwork.ozlabs.org/api/patches/884/checks/","tags":{},"headers":{"Return-Path":"<netdev-owner@vger.kernel.org>","X-Original-To":"patchwork-incoming@ozlabs.org","Delivered-To":"patchwork-incoming@ozlabs.org","Received":["from vger.kernel.org (vger.kernel.org [209.132.176.167])\n\tby ozlabs.org (Postfix) with ESMTP id 7B8CEDDF25\n\tfor <patchwork-incoming@ozlabs.org>;\n\tTue, 23 Sep 2008 01:48:29 +1000 (EST)","(majordomo@vger.kernel.org) by vger.kernel.org via listexpand\n\tid S1753465AbYIVPro (ORCPT <rfc822;patchwork-incoming@ozlabs.org>);\n\tMon, 22 Sep 2008 11:47:44 -0400","(majordomo@vger.kernel.org) by vger.kernel.org id S1753410AbYIVPrn\n\t(ORCPT <rfc822; netdev-outgoing>); Mon, 22 Sep 2008 11:47:43 -0400","from smtp.nokia.com ([192.100.122.233]:52998 \"EHLO\n\tmgw-mx06.nokia.com\" rhost-flags-OK-OK-OK-OK) by vger.kernel.org\n\twith ESMTP id S1753239AbYIVPrm (ORCPT\n\t<rfc822;netdev@vger.kernel.org>); Mon, 22 Sep 2008 11:47:42 -0400","from vaebh105.NOE.Nokia.com (vaebh105.europe.nokia.com\n\t[10.160.244.31])\n\tby mgw-mx06.nokia.com (Switch-3.2.6/Switch-3.2.6) with ESMTP id\n\tm8MFlZFV027641\n\tfor <netdev@vger.kernel.org>; Mon, 22 Sep 2008 18:47:40 +0300","from vaebh102.NOE.Nokia.com ([10.160.244.23]) by\n\tvaebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); \n\tMon, 22 Sep 2008 18:47:35 +0300","from localhost.localdomain ([172.21.41.115]) by\n\tvaebh102.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); \n\tMon, 22 Sep 2008 18:47:26 +0300"],"From":"=?utf-8?q?R=C3=A9mi=20Denis-Courmont?= <remi.denis-courmont@nokia.com>","To":"netdev@vger.kernel.org","Subject":"[PATCH 03/11] Phonet: add CONFIG_PHONET","Date":"Mon, 22 Sep 2008 18:47:17 +0300","Message-Id":"<1222098445-26175-3-git-send-email-remi.denis-courmont@nokia.com>","X-Mailer":"git-send-email 1.5.4.3","In-Reply-To":"<200809221845.54736.remi.denis-courmont@nokia.com>","References":"<200809221845.54736.remi.denis-courmont@nokia.com>","X-OriginalArrivalTime":"22 Sep 2008 15:47:26.0319 (UTC)\n\tFILETIME=[82FA67F0:01C91CCA]","X-Nokia-AV":"Clean","Sender":"netdev-owner@vger.kernel.org","Precedence":"bulk","List-ID":"<netdev.vger.kernel.org>","X-Mailing-List":"netdev@vger.kernel.org"},"content":"Signed-off-by: Remi Denis-Courmont <remi.denis-courmont@nokia.com>\n---\n net/Kconfig         |    1 +\n net/Makefile        |    1 +\n net/phonet/Kconfig  |   16 ++++++++++++++++\n net/phonet/Makefile |    4 ++++\n 4 files changed, 22 insertions(+), 0 deletions(-)\n create mode 100644 net/phonet/Kconfig\n create mode 100644 net/phonet/Makefile","diff":"diff --git a/net/Kconfig b/net/Kconfig\nindex d87de48..9103a16 100644\n--- a/net/Kconfig\n+++ b/net/Kconfig\n@@ -232,6 +232,7 @@ source \"net/can/Kconfig\"\n source \"net/irda/Kconfig\"\n source \"net/bluetooth/Kconfig\"\n source \"net/rxrpc/Kconfig\"\n+source \"net/phonet/Kconfig\"\n \n config FIB_RULES\n \tbool\ndiff --git a/net/Makefile b/net/Makefile\nindex 4f43e7f..acaf819 100644\n--- a/net/Makefile\n+++ b/net/Makefile\n@@ -42,6 +42,7 @@ obj-$(CONFIG_AF_RXRPC)\t\t+= rxrpc/\n obj-$(CONFIG_ATM)\t\t+= atm/\n obj-$(CONFIG_DECNET)\t\t+= decnet/\n obj-$(CONFIG_ECONET)\t\t+= econet/\n+obj-$(CONFIG_PHONET)\t\t+= phonet/\n ifneq ($(CONFIG_VLAN_8021Q),)\n obj-y\t\t\t\t+= 8021q/\n endif\ndiff --git a/net/phonet/Kconfig b/net/phonet/Kconfig\nnew file mode 100644\nindex 0000000..51a5669\n--- /dev/null\n+++ b/net/phonet/Kconfig\n@@ -0,0 +1,16 @@\n+#\n+# Phonet protocol\n+#\n+\n+config PHONET\n+\ttristate \"Phonet protocols family\"\n+\thelp\n+\t  The Phone Network protocol (PhoNet) is a packet-oriented\n+\t  communication protocol developped by Nokia for use with its modems.\n+\n+\t  This is required for Maemo to use cellular data connectivity (if\n+\t  supported). It can also be used to control Nokia phones\n+\t  from a Linux computer, although AT commands may be easier to use.\n+\n+\t  To compile this driver as a module, choose M here: the module\n+\t  will be called phonet. If unsure, say N.\ndiff --git a/net/phonet/Makefile b/net/phonet/Makefile\nnew file mode 100644\nindex 0000000..5dbff68\n--- /dev/null\n+++ b/net/phonet/Makefile\n@@ -0,0 +1,4 @@\n+obj-$(CONFIG_PHONET) += phonet.o\n+\n+phonet-objs := \\\n+\taf_phonet.o\n","prefixes":["03/11"]}