From patchwork Thu Aug 28 11:44:33 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rasmus Villemoes X-Patchwork-Id: 383805 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 9370D140119 for ; Thu, 28 Aug 2014 21:46:31 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750924AbaH1Lpk (ORCPT ); Thu, 28 Aug 2014 07:45:40 -0400 Received: from mail-lb0-f177.google.com ([209.85.217.177]:61300 "EHLO mail-lb0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751206AbaH1LpB (ORCPT ); Thu, 28 Aug 2014 07:45:01 -0400 Received: by mail-lb0-f177.google.com with SMTP id z11so737567lbi.36 for ; Thu, 28 Aug 2014 04:45:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rasmusvillemoes.dk; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=ywiK4iZXjB/y77Myp6hbSTacPFIuHl9ZcRn0OmBhCzo=; b=A/AjP2Bnwx7+XpeKpPkn/6aVcBoebM8dt2yku5E0bgJCr0phZLzu117lkgpRf7UOfS ZvqA9r3iuN5VRzGZedrUv6JmCoh62K3RrNJTqyczP5Bf9VNAGyEAw7g6drm+ImNCTS2e yTFMJULt60cSLTi3IsB0i94vpq5vmVFZYA2ZY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=ywiK4iZXjB/y77Myp6hbSTacPFIuHl9ZcRn0OmBhCzo=; b=WfBbKMVJVnKrmz6O8TcD3CA/xqd57hspw2cQ9ISqyKHgS+WcXw6oNspzGxICfXEOle LmSiMGae3eNxbNzhjEuiK2o7bB+UNGoKk9MmSJdNwbbzDrROVpXDDhbpWn6IEryNYsyY 73FuwWC7Mzyyl34RXSR2/v/JWhq56PYj/hDRUES98JPzvdcPepZEQsqe6OtrOU/9mIbs 29ypg9cjAI9ntmcU8FSSZgcRdSLInJGu9GkQH5PEte0+IY80t0Y4hnJ3oIKjI89tG/DA fTfPMBMJcT6UCPSwQTUBe2oHy8+JR1FAFqlb8givQgDnswaJKsfj4vU9TTH8BYMB0HFk X4lw== X-Gm-Message-State: ALoCoQlNq4qdzGmfhz+bAsQ2vQk1KBXuGxRNaUR8fLooGTuHlVsnX9SZ9T/IK8BL5OI00trDtEo7 X-Received: by 10.112.147.74 with SMTP id ti10mr3506745lbb.29.1409226299920; Thu, 28 Aug 2014 04:44:59 -0700 (PDT) Received: from spencer.imf.au.dk ([130.225.20.51]) by mx.google.com with ESMTPSA id zt1sm5566669lbc.31.2014.08.28.04.44.59 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 Aug 2014 04:44:59 -0700 (PDT) From: Rasmus Villemoes To: "David S. Miller" , Paul Gortmaker Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Rasmus Villemoes Subject: [PATCH 3/4] include/linux/phonedev.h: Remove unused header Date: Thu, 28 Aug 2014 13:44:33 +0200 Message-Id: <1409226274-3202-4-git-send-email-linux@rasmusvillemoes.dk> X-Mailer: git-send-email 2.0.4 In-Reply-To: <1409226274-3202-1-git-send-email-linux@rasmusvillemoes.dk> References: <1409226274-3202-1-git-send-email-linux@rasmusvillemoes.dk> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org The header file include/linux/phonedev.h does not seem to be used anywhere. It was orphaned by 7326446c "Staging: remove telephony drivers". Remove it. Signed-off-by: Rasmus Villemoes --- include/linux/phonedev.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 include/linux/phonedev.h diff --git a/include/linux/phonedev.h b/include/linux/phonedev.h deleted file mode 100644 index 4269de9..0000000 --- a/include/linux/phonedev.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef __LINUX_PHONEDEV_H -#define __LINUX_PHONEDEV_H - -#include - -#ifdef __KERNEL__ - -#include - -struct phone_device { - struct phone_device *next; - const struct file_operations *f_op; - int (*open) (struct phone_device *, struct file *); - int board; /* Device private index */ - int minor; -}; - -extern int phonedev_init(void); -#define PHONE_MAJOR 100 -extern int phone_register_device(struct phone_device *, int unit); -#define PHONE_UNIT_ANY -1 -extern void phone_unregister_device(struct phone_device *); - -#endif -#endif