All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Remove various orphaned header files
@ 2014-06-24 17:27 ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

AFAICT, these headers are not used anywhere, and are just accidental
leftovers from past cleanups.

Rasmus Villemoes (6):
  include/linux/cycx_x25.h: Remove unused header
  include/linux/i82593.h: Remove unused header
  include/linux/mfd/ti_ssp.h: Remove unused header
  include/linux/phonedev.h: Remove unused header
  include/linux/platform_data/tegra_emc.h: Remove unused header
  include/rxrpc/types.h: Remove unused header

 include/linux/cycx_x25.h                | 125 -----------------
 include/linux/i82593.h                  | 229 --------------------------------
 include/linux/mfd/ti_ssp.h              |  93 -------------
 include/linux/phonedev.h                |  25 ----
 include/linux/platform_data/tegra_emc.h |  34 -----
 include/rxrpc/types.h                   |  41 ------
 6 files changed, 547 deletions(-)
 delete mode 100644 include/linux/cycx_x25.h
 delete mode 100644 include/linux/i82593.h
 delete mode 100644 include/linux/mfd/ti_ssp.h
 delete mode 100644 include/linux/phonedev.h
 delete mode 100644 include/linux/platform_data/tegra_emc.h
 delete mode 100644 include/rxrpc/types.h

-- 
1.9.2


^ permalink raw reply	[flat|nested] 26+ messages in thread

* [PATCH 0/6] Remove various orphaned header files
@ 2014-06-24 17:27 ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

AFAICT, these headers are not used anywhere, and are just accidental
leftovers from past cleanups.

Rasmus Villemoes (6):
  include/linux/cycx_x25.h: Remove unused header
  include/linux/i82593.h: Remove unused header
  include/linux/mfd/ti_ssp.h: Remove unused header
  include/linux/phonedev.h: Remove unused header
  include/linux/platform_data/tegra_emc.h: Remove unused header
  include/rxrpc/types.h: Remove unused header

 include/linux/cycx_x25.h                | 125 -----------------
 include/linux/i82593.h                  | 229 --------------------------------
 include/linux/mfd/ti_ssp.h              |  93 -------------
 include/linux/phonedev.h                |  25 ----
 include/linux/platform_data/tegra_emc.h |  34 -----
 include/rxrpc/types.h                   |  41 ------
 6 files changed, 547 deletions(-)
 delete mode 100644 include/linux/cycx_x25.h
 delete mode 100644 include/linux/i82593.h
 delete mode 100644 include/linux/mfd/ti_ssp.h
 delete mode 100644 include/linux/phonedev.h
 delete mode 100644 include/linux/platform_data/tegra_emc.h
 delete mode 100644 include/rxrpc/types.h

-- 
1.9.2


^ permalink raw reply	[flat|nested] 26+ messages in thread

* [PATCH 1/6] include/linux/cycx_x25.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/cycx_x25.h does not seem to be used
anywhere. It was orphaned by 6fcdf4facb "wanrouter: delete now
orphaned header content, files/drivers". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/cycx_x25.h | 125 -----------------------------------------------
 1 file changed, 125 deletions(-)
 delete mode 100644 include/linux/cycx_x25.h

diff --git a/include/linux/cycx_x25.h b/include/linux/cycx_x25.h
deleted file mode 100644
index 362bf19..0000000
--- a/include/linux/cycx_x25.h
+++ /dev/null
@@ -1,125 +0,0 @@
-#ifndef	_CYCX_X25_H
-#define	_CYCX_X25_H
-/*
-* cycx_x25.h	Cyclom X.25 firmware API definitions.
-*
-* Author:	Arnaldo Carvalho de Melo <acme@conectiva.com.br>
-*
-* Copyright:	(c) 1998-2003 Arnaldo Carvalho de Melo
-*
-* Based on sdla_x25.h by Gene Kozin <74604.152@compuserve.com>
-*
-*		This program is free software; you can redistribute it and/or
-*		modify it under the terms of the GNU General Public License
-*		as published by the Free Software Foundation; either version
-*		2 of the License, or (at your option) any later version.
-* ============================================================================
-* 2000/04/02	acme		dprintk and cycx_debug
-* 1999/01/03	acme		judicious use of data types
-* 1999/01/02	acme		#define X25_ACK_N3	0x4411
-* 1998/12/28	acme		cleanup: lot'o'things removed
-*					 commands listed,
-*					 TX25Cmd & TX25Config structs
-*					 typedef'ed
-*/
-#ifndef PACKED
-#define PACKED __attribute__((packed))
-#endif 
-
-/* X.25 shared memory layout. */
-#define	X25_MBOX_OFFS	0x300	/* general mailbox block */
-#define	X25_RXMBOX_OFFS	0x340	/* receive mailbox */
-
-/* Debug */
-#define dprintk(level, format, a...) if (cycx_debug >= level) printk(format, ##a)
-
-extern unsigned int cycx_debug;
-
-/* Data Structures */
-/* X.25 Command Block. */
-struct cycx_x25_cmd {
-	u16 command;
-	u16 link;	/* values: 0 or 1 */
-	u16 len;	/* values: 0 thru 0x205 (517) */
-	u32 buf;
-} PACKED;
-
-/* Defines for the 'command' field. */
-#define X25_CONNECT_REQUEST             0x4401
-#define X25_CONNECT_RESPONSE            0x4402
-#define X25_DISCONNECT_REQUEST          0x4403
-#define X25_DISCONNECT_RESPONSE         0x4404
-#define X25_DATA_REQUEST                0x4405
-#define X25_ACK_TO_VC			0x4406
-#define X25_INTERRUPT_RESPONSE          0x4407
-#define X25_CONFIG                      0x4408
-#define X25_CONNECT_INDICATION          0x4409
-#define X25_CONNECT_CONFIRM             0x440A
-#define X25_DISCONNECT_INDICATION       0x440B
-#define X25_DISCONNECT_CONFIRM          0x440C
-#define X25_DATA_INDICATION             0x440E
-#define X25_INTERRUPT_INDICATION        0x440F
-#define X25_ACK_FROM_VC			0x4410
-#define X25_ACK_N3			0x4411
-#define X25_CONNECT_COLLISION           0x4413
-#define X25_N3WIN                       0x4414
-#define X25_LINE_ON                     0x4415
-#define X25_LINE_OFF                    0x4416
-#define X25_RESET_REQUEST               0x4417
-#define X25_LOG                         0x4500
-#define X25_STATISTIC                   0x4600
-#define X25_TRACE                       0x4700
-#define X25_N2TRACEXC                   0x4702
-#define X25_N3TRACEXC                   0x4703
-
-/**
- *	struct cycx_x25_config - cyclom2x x25 firmware configuration
- *	@link - link number
- *	@speed - line speed
- *	@clock - internal/external
- *	@n2 - # of level 2 retransm.(values: 1 thru FF)
- *	@n2win - level 2 window (values: 1 thru 7)
- *	@n3win - level 3 window (values: 1 thru 7)
- *	@nvc - # of logical channels (values: 1 thru 64)
- *	@pktlen - level 3 packet length - log base 2 of size
- *	@locaddr - my address
- *	@remaddr - remote address
- *	@t1 - time, in seconds
- *	@t2 - time, in seconds
- *	@t21 - time, in seconds
- *	@npvc - # of permanent virt. circuits (1 thru nvc)
- *	@t23 - time, in seconds
- *	@flags - see dosx25.doc, in portuguese, for details
- */
-struct cycx_x25_config {
-	u8  link;
-	u8  speed;
-	u8  clock;
-	u8  n2;
-	u8  n2win;
-	u8  n3win;
-	u8  nvc;
-	u8  pktlen;
-	u8  locaddr;
-	u8  remaddr;
-	u16 t1;
-	u16 t2;
-	u8  t21;
-	u8  npvc;
-	u8  t23;
-	u8  flags;
-} PACKED;
-
-struct cycx_x25_stats {
-	u16 rx_crc_errors;
-	u16 rx_over_errors;
-	u16 n2_tx_frames;
-	u16 n2_rx_frames;
-	u16 tx_timeouts;
-	u16 rx_timeouts;
-	u16 n3_tx_packets;
-	u16 n3_rx_packets;
-	u16 tx_aborts;
-	u16 rx_aborts;
-} PACKED;
-#endif	/* _CYCX_X25_H */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 1/6] include/linux/cycx_x25.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/cycx_x25.h does not seem to be used
anywhere. It was orphaned by 6fcdf4facb "wanrouter: delete now
orphaned header content, files/drivers". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/cycx_x25.h | 125 -----------------------------------------------
 1 file changed, 125 deletions(-)
 delete mode 100644 include/linux/cycx_x25.h

diff --git a/include/linux/cycx_x25.h b/include/linux/cycx_x25.h
deleted file mode 100644
index 362bf19..0000000
--- a/include/linux/cycx_x25.h
+++ /dev/null
@@ -1,125 +0,0 @@
-#ifndef	_CYCX_X25_H
-#define	_CYCX_X25_H
-/*
-* cycx_x25.h	Cyclom X.25 firmware API definitions.
-*
-* Author:	Arnaldo Carvalho de Melo <acme@conectiva.com.br>
-*
-* Copyright:	(c) 1998-2003 Arnaldo Carvalho de Melo
-*
-* Based on sdla_x25.h by Gene Kozin <74604.152@compuserve.com>
-*
-*		This program is free software; you can redistribute it and/or
-*		modify it under the terms of the GNU General Public License
-*		as published by the Free Software Foundation; either version
-*		2 of the License, or (at your option) any later version.
-* ======================================
-* 2000/04/02	acme		dprintk and cycx_debug
-* 1999/01/03	acme		judicious use of data types
-* 1999/01/02	acme		#define X25_ACK_N3	0x4411
-* 1998/12/28	acme		cleanup: lot'o'things removed
-*					 commands listed,
-*					 TX25Cmd & TX25Config structs
-*					 typedef'ed
-*/
-#ifndef PACKED
-#define PACKED __attribute__((packed))
-#endif 
-
-/* X.25 shared memory layout. */
-#define	X25_MBOX_OFFS	0x300	/* general mailbox block */
-#define	X25_RXMBOX_OFFS	0x340	/* receive mailbox */
-
-/* Debug */
-#define dprintk(level, format, a...) if (cycx_debug >= level) printk(format, ##a)
-
-extern unsigned int cycx_debug;
-
-/* Data Structures */
-/* X.25 Command Block. */
-struct cycx_x25_cmd {
-	u16 command;
-	u16 link;	/* values: 0 or 1 */
-	u16 len;	/* values: 0 thru 0x205 (517) */
-	u32 buf;
-} PACKED;
-
-/* Defines for the 'command' field. */
-#define X25_CONNECT_REQUEST             0x4401
-#define X25_CONNECT_RESPONSE            0x4402
-#define X25_DISCONNECT_REQUEST          0x4403
-#define X25_DISCONNECT_RESPONSE         0x4404
-#define X25_DATA_REQUEST                0x4405
-#define X25_ACK_TO_VC			0x4406
-#define X25_INTERRUPT_RESPONSE          0x4407
-#define X25_CONFIG                      0x4408
-#define X25_CONNECT_INDICATION          0x4409
-#define X25_CONNECT_CONFIRM             0x440A
-#define X25_DISCONNECT_INDICATION       0x440B
-#define X25_DISCONNECT_CONFIRM          0x440C
-#define X25_DATA_INDICATION             0x440E
-#define X25_INTERRUPT_INDICATION        0x440F
-#define X25_ACK_FROM_VC			0x4410
-#define X25_ACK_N3			0x4411
-#define X25_CONNECT_COLLISION           0x4413
-#define X25_N3WIN                       0x4414
-#define X25_LINE_ON                     0x4415
-#define X25_LINE_OFF                    0x4416
-#define X25_RESET_REQUEST               0x4417
-#define X25_LOG                         0x4500
-#define X25_STATISTIC                   0x4600
-#define X25_TRACE                       0x4700
-#define X25_N2TRACEXC                   0x4702
-#define X25_N3TRACEXC                   0x4703
-
-/**
- *	struct cycx_x25_config - cyclom2x x25 firmware configuration
- *	@link - link number
- *	@speed - line speed
- *	@clock - internal/external
- *	@n2 - # of level 2 retransm.(values: 1 thru FF)
- *	@n2win - level 2 window (values: 1 thru 7)
- *	@n3win - level 3 window (values: 1 thru 7)
- *	@nvc - # of logical channels (values: 1 thru 64)
- *	@pktlen - level 3 packet length - log base 2 of size
- *	@locaddr - my address
- *	@remaddr - remote address
- *	@t1 - time, in seconds
- *	@t2 - time, in seconds
- *	@t21 - time, in seconds
- *	@npvc - # of permanent virt. circuits (1 thru nvc)
- *	@t23 - time, in seconds
- *	@flags - see dosx25.doc, in portuguese, for details
- */
-struct cycx_x25_config {
-	u8  link;
-	u8  speed;
-	u8  clock;
-	u8  n2;
-	u8  n2win;
-	u8  n3win;
-	u8  nvc;
-	u8  pktlen;
-	u8  locaddr;
-	u8  remaddr;
-	u16 t1;
-	u16 t2;
-	u8  t21;
-	u8  npvc;
-	u8  t23;
-	u8  flags;
-} PACKED;
-
-struct cycx_x25_stats {
-	u16 rx_crc_errors;
-	u16 rx_over_errors;
-	u16 n2_tx_frames;
-	u16 n2_rx_frames;
-	u16 tx_timeouts;
-	u16 rx_timeouts;
-	u16 n3_tx_packets;
-	u16 n3_rx_packets;
-	u16 tx_aborts;
-	u16 rx_aborts;
-} PACKED;
-#endif	/* _CYCX_X25_H */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 2/6] include/linux/i82593.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/i82593.h does not seem to be used
anywhere. It was orphaned by 8a594170 "drivers/net: delete intel
i825xx based znet notebook driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/i82593.h | 229 -------------------------------------------------
 1 file changed, 229 deletions(-)
 delete mode 100644 include/linux/i82593.h

diff --git a/include/linux/i82593.h b/include/linux/i82593.h
deleted file mode 100644
index afac5c7..0000000
--- a/include/linux/i82593.h
+++ /dev/null
@@ -1,229 +0,0 @@
-/*
- * Definitions for Intel 82593 CSMA/CD Core LAN Controller
- * The definitions are taken from the 1992 users manual with Intel
- * order number 297125-001.
- *
- * /usr/src/pc/RCS/i82593.h,v 1.1 1996/07/17 15:23:12 root Exp
- *
- * Copyright 1994, Anders Klemets <klemets@it.kth.se>
- *
- * HISTORY
- * i82593.h,v
- * Revision 1.4  2005/11/4  09:15:00  baroniunas
- * Modified copyright with permission of author as follows:
- *
- *   "If I82539.H is the only file with my copyright statement
- *    that is included in the Source Forge project, then you have
- *    my approval to change the copyright statement to be a GPL
- *    license, in the way you proposed on October 10."
- *
- * Revision 1.1  1996/07/17 15:23:12  root
- * Initial revision
- *
- * Revision 1.3  1995/04/05  15:13:58  adj
- * Initial alpha release
- *
- * Revision 1.2  1994/06/16  23:57:31  klemets
- * Mirrored all the fields in the configuration block.
- *
- * Revision 1.1  1994/06/02  20:25:34  klemets
- * Initial revision
- *
- *
- */
-#ifndef	_I82593_H
-#define	_I82593_H
-
-/* Intel 82593 CSMA/CD Core LAN Controller */
-
-/* Port 0 Command Register definitions */
-
-/* Execution operations */
-#define OP0_NOP			0	/* CHNL = 0 */
-#define OP0_SWIT_TO_PORT_1	0	/* CHNL = 1 */
-#define OP0_IA_SETUP		1
-#define OP0_CONFIGURE		2
-#define OP0_MC_SETUP		3
-#define OP0_TRANSMIT		4
-#define OP0_TDR			5
-#define OP0_DUMP		6
-#define OP0_DIAGNOSE		7
-#define OP0_TRANSMIT_NO_CRC	9
-#define OP0_RETRANSMIT		12
-#define OP0_ABORT		13
-/* Reception operations */
-#define OP0_RCV_ENABLE		8
-#define OP0_RCV_DISABLE		10
-#define OP0_STOP_RCV		11
-/* Status pointer control operations */
-#define OP0_FIX_PTR		15	/* CHNL = 1 */
-#define OP0_RLS_PTR		15	/* CHNL = 0 */
-#define OP0_RESET		14
-
-#define CR0_CHNL		(1 << 4)	/* 0=Channel 0, 1=Channel 1 */
-#define CR0_STATUS_0		0x00
-#define CR0_STATUS_1		0x20
-#define CR0_STATUS_2		0x40
-#define CR0_STATUS_3		0x60
-#define CR0_INT_ACK		(1 << 7)	/* 0=No ack, 1=acknowledge */
-
-/* Port 0 Status Register definitions */
-
-#define SR0_NO_RESULT		0		/* dummy */
-#define SR0_EVENT_MASK		0x0f
-#define SR0_IA_SETUP_DONE	1
-#define SR0_CONFIGURE_DONE	2
-#define SR0_MC_SETUP_DONE	3
-#define SR0_TRANSMIT_DONE	4
-#define SR0_TDR_DONE		5
-#define SR0_DUMP_DONE		6
-#define SR0_DIAGNOSE_PASSED	7
-#define SR0_TRANSMIT_NO_CRC_DONE 9
-#define SR0_RETRANSMIT_DONE	12
-#define SR0_EXECUTION_ABORTED	13
-#define SR0_END_OF_FRAME	8
-#define SR0_RECEPTION_ABORTED	10
-#define SR0_DIAGNOSE_FAILED	15
-#define SR0_STOP_REG_HIT	11
-
-#define SR0_CHNL		(1 << 4)
-#define SR0_EXECUTION		(1 << 5)
-#define SR0_RECEPTION		(1 << 6)
-#define SR0_INTERRUPT		(1 << 7)
-#define SR0_BOTH_RX_TX		(SR0_EXECUTION | SR0_RECEPTION)
-
-#define SR3_EXEC_STATE_MASK	0x03
-#define SR3_EXEC_IDLE		0
-#define SR3_TX_ABORT_IN_PROGRESS 1
-#define SR3_EXEC_ACTIVE		2
-#define SR3_ABORT_IN_PROGRESS	3
-#define SR3_EXEC_CHNL		(1 << 2)
-#define SR3_STP_ON_NO_RSRC	(1 << 3)
-#define SR3_RCVING_NO_RSRC	(1 << 4)
-#define SR3_RCV_STATE_MASK	0x60
-#define SR3_RCV_IDLE		0x00
-#define SR3_RCV_READY		0x20
-#define SR3_RCV_ACTIVE		0x40
-#define SR3_RCV_STOP_IN_PROG	0x60
-#define SR3_RCV_CHNL		(1 << 7)
-
-/* Port 1 Command Register definitions */
-
-#define OP1_NOP			0
-#define OP1_SWIT_TO_PORT_0	1
-#define OP1_INT_DISABLE		2
-#define OP1_INT_ENABLE		3
-#define OP1_SET_TS		5
-#define OP1_RST_TS		7
-#define OP1_POWER_DOWN		8
-#define OP1_RESET_RING_MNGMT	11
-#define OP1_RESET		14
-#define OP1_SEL_RST		15
-
-#define CR1_STATUS_4		0x00
-#define CR1_STATUS_5		0x20
-#define CR1_STATUS_6		0x40
-#define CR1_STOP_REG_UPDATE	(1 << 7)
-
-/* Receive frame status bits */
-
-#define	RX_RCLD			(1 << 0)
-#define RX_IA_MATCH		(1 << 1)
-#define	RX_NO_AD_MATCH		(1 << 2)
-#define RX_NO_SFD		(1 << 3)
-#define RX_SRT_FRM		(1 << 7)
-#define RX_OVRRUN		(1 << 8)
-#define RX_ALG_ERR		(1 << 10)
-#define RX_CRC_ERR		(1 << 11)
-#define RX_LEN_ERR		(1 << 12)
-#define RX_RCV_OK		(1 << 13)
-#define RX_TYP_LEN		(1 << 15)
-
-/* Transmit status bits */
-
-#define TX_NCOL_MASK		0x0f
-#define TX_FRTL			(1 << 4)
-#define TX_MAX_COL		(1 << 5)
-#define TX_HRT_BEAT		(1 << 6)
-#define TX_DEFER		(1 << 7)
-#define TX_UND_RUN		(1 << 8)
-#define TX_LOST_CTS		(1 << 9)
-#define TX_LOST_CRS		(1 << 10)
-#define TX_LTCOL		(1 << 11)
-#define TX_OK			(1 << 13)
-#define TX_COLL			(1 << 15)
-
-struct i82593_conf_block {
-  u_char fifo_limit : 4,
-  	 forgnesi   : 1,
-  	 fifo_32    : 1,
-  	 d6mod      : 1,
-  	 throttle_enb : 1;
-  u_char throttle   : 6,
-	 cntrxint   : 1,
-	 contin	    : 1;
-  u_char addr_len   : 3,
-  	 acloc 	    : 1,
- 	 preamb_len : 2,
-  	 loopback   : 2;
-  u_char lin_prio   : 3,
-	 tbofstop   : 1,
-	 exp_prio   : 3,
-	 bof_met    : 1;
-  u_char	    : 4,
-	 ifrm_spc   : 4;
-  u_char	    : 5,
-	 slottim_low : 3;
-  u_char slottim_hi : 3,
-		    : 1,
-	 max_retr   : 4;
-  u_char prmisc     : 1,
-	 bc_dis     : 1,
-  		    : 1,
-	 crs_1	    : 1,
-	 nocrc_ins  : 1,
-	 crc_1632   : 1,
-  	 	    : 1,
-  	 crs_cdt    : 1;
-  u_char cs_filter  : 3,
-	 crs_src    : 1,
-	 cd_filter  : 3,
-		    : 1;
-  u_char	    : 2,
-  	 min_fr_len : 6;
-  u_char lng_typ    : 1,
-	 lng_fld    : 1,
-	 rxcrc_xf   : 1,
-	 artx	    : 1,
-	 sarec	    : 1,
-	 tx_jabber  : 1,	/* why is this called max_len in the manual? */
-	 hash_1	    : 1,
-  	 lbpkpol    : 1;
-  u_char	    : 6,
-  	 fdx	    : 1,
-  	  	    : 1;
-  u_char dummy_6    : 6,	/* supposed to be ones */
-  	 mult_ia    : 1,
-  	 dis_bof    : 1;
-  u_char dummy_1    : 1,	/* supposed to be one */
-	 tx_ifs_retrig : 2,
-	 mc_all     : 1,
-	 rcv_mon    : 2,
-	 frag_acpt  : 1,
-  	 tstrttrs   : 1;
-  u_char fretx	    : 1,
-	 runt_eop   : 1,
-	 hw_sw_pin  : 1,
-	 big_endn   : 1,
-	 syncrqs    : 1,
-	 sttlen     : 1,
-	 tx_eop     : 1,
-  	 rx_eop	    : 1;
-  u_char rbuf_size  : 5,
-	 rcvstop    : 1,
-  	 	    : 2;
-};
-
-#define I82593_MAX_MULTICAST_ADDRESSES	128	/* Hardware hashed filter */
-
-#endif /* _I82593_H */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 2/6] include/linux/i82593.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/i82593.h does not seem to be used
anywhere. It was orphaned by 8a594170 "drivers/net: delete intel
i825xx based znet notebook driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/i82593.h | 229 -------------------------------------------------
 1 file changed, 229 deletions(-)
 delete mode 100644 include/linux/i82593.h

diff --git a/include/linux/i82593.h b/include/linux/i82593.h
deleted file mode 100644
index afac5c7..0000000
--- a/include/linux/i82593.h
+++ /dev/null
@@ -1,229 +0,0 @@
-/*
- * Definitions for Intel 82593 CSMA/CD Core LAN Controller
- * The definitions are taken from the 1992 users manual with Intel
- * order number 297125-001.
- *
- * /usr/src/pc/RCS/i82593.h,v 1.1 1996/07/17 15:23:12 root Exp
- *
- * Copyright 1994, Anders Klemets <klemets@it.kth.se>
- *
- * HISTORY
- * i82593.h,v
- * Revision 1.4  2005/11/4  09:15:00  baroniunas
- * Modified copyright with permission of author as follows:
- *
- *   "If I82539.H is the only file with my copyright statement
- *    that is included in the Source Forge project, then you have
- *    my approval to change the copyright statement to be a GPL
- *    license, in the way you proposed on October 10."
- *
- * Revision 1.1  1996/07/17 15:23:12  root
- * Initial revision
- *
- * Revision 1.3  1995/04/05  15:13:58  adj
- * Initial alpha release
- *
- * Revision 1.2  1994/06/16  23:57:31  klemets
- * Mirrored all the fields in the configuration block.
- *
- * Revision 1.1  1994/06/02  20:25:34  klemets
- * Initial revision
- *
- *
- */
-#ifndef	_I82593_H
-#define	_I82593_H
-
-/* Intel 82593 CSMA/CD Core LAN Controller */
-
-/* Port 0 Command Register definitions */
-
-/* Execution operations */
-#define OP0_NOP			0	/* CHNL = 0 */
-#define OP0_SWIT_TO_PORT_1	0	/* CHNL = 1 */
-#define OP0_IA_SETUP		1
-#define OP0_CONFIGURE		2
-#define OP0_MC_SETUP		3
-#define OP0_TRANSMIT		4
-#define OP0_TDR			5
-#define OP0_DUMP		6
-#define OP0_DIAGNOSE		7
-#define OP0_TRANSMIT_NO_CRC	9
-#define OP0_RETRANSMIT		12
-#define OP0_ABORT		13
-/* Reception operations */
-#define OP0_RCV_ENABLE		8
-#define OP0_RCV_DISABLE		10
-#define OP0_STOP_RCV		11
-/* Status pointer control operations */
-#define OP0_FIX_PTR		15	/* CHNL = 1 */
-#define OP0_RLS_PTR		15	/* CHNL = 0 */
-#define OP0_RESET		14
-
-#define CR0_CHNL		(1 << 4)	/* 0=Channel 0, 1=Channel 1 */
-#define CR0_STATUS_0		0x00
-#define CR0_STATUS_1		0x20
-#define CR0_STATUS_2		0x40
-#define CR0_STATUS_3		0x60
-#define CR0_INT_ACK		(1 << 7)	/* 0=No ack, 1¬knowledge */
-
-/* Port 0 Status Register definitions */
-
-#define SR0_NO_RESULT		0		/* dummy */
-#define SR0_EVENT_MASK		0x0f
-#define SR0_IA_SETUP_DONE	1
-#define SR0_CONFIGURE_DONE	2
-#define SR0_MC_SETUP_DONE	3
-#define SR0_TRANSMIT_DONE	4
-#define SR0_TDR_DONE		5
-#define SR0_DUMP_DONE		6
-#define SR0_DIAGNOSE_PASSED	7
-#define SR0_TRANSMIT_NO_CRC_DONE 9
-#define SR0_RETRANSMIT_DONE	12
-#define SR0_EXECUTION_ABORTED	13
-#define SR0_END_OF_FRAME	8
-#define SR0_RECEPTION_ABORTED	10
-#define SR0_DIAGNOSE_FAILED	15
-#define SR0_STOP_REG_HIT	11
-
-#define SR0_CHNL		(1 << 4)
-#define SR0_EXECUTION		(1 << 5)
-#define SR0_RECEPTION		(1 << 6)
-#define SR0_INTERRUPT		(1 << 7)
-#define SR0_BOTH_RX_TX		(SR0_EXECUTION | SR0_RECEPTION)
-
-#define SR3_EXEC_STATE_MASK	0x03
-#define SR3_EXEC_IDLE		0
-#define SR3_TX_ABORT_IN_PROGRESS 1
-#define SR3_EXEC_ACTIVE		2
-#define SR3_ABORT_IN_PROGRESS	3
-#define SR3_EXEC_CHNL		(1 << 2)
-#define SR3_STP_ON_NO_RSRC	(1 << 3)
-#define SR3_RCVING_NO_RSRC	(1 << 4)
-#define SR3_RCV_STATE_MASK	0x60
-#define SR3_RCV_IDLE		0x00
-#define SR3_RCV_READY		0x20
-#define SR3_RCV_ACTIVE		0x40
-#define SR3_RCV_STOP_IN_PROG	0x60
-#define SR3_RCV_CHNL		(1 << 7)
-
-/* Port 1 Command Register definitions */
-
-#define OP1_NOP			0
-#define OP1_SWIT_TO_PORT_0	1
-#define OP1_INT_DISABLE		2
-#define OP1_INT_ENABLE		3
-#define OP1_SET_TS		5
-#define OP1_RST_TS		7
-#define OP1_POWER_DOWN		8
-#define OP1_RESET_RING_MNGMT	11
-#define OP1_RESET		14
-#define OP1_SEL_RST		15
-
-#define CR1_STATUS_4		0x00
-#define CR1_STATUS_5		0x20
-#define CR1_STATUS_6		0x40
-#define CR1_STOP_REG_UPDATE	(1 << 7)
-
-/* Receive frame status bits */
-
-#define	RX_RCLD			(1 << 0)
-#define RX_IA_MATCH		(1 << 1)
-#define	RX_NO_AD_MATCH		(1 << 2)
-#define RX_NO_SFD		(1 << 3)
-#define RX_SRT_FRM		(1 << 7)
-#define RX_OVRRUN		(1 << 8)
-#define RX_ALG_ERR		(1 << 10)
-#define RX_CRC_ERR		(1 << 11)
-#define RX_LEN_ERR		(1 << 12)
-#define RX_RCV_OK		(1 << 13)
-#define RX_TYP_LEN		(1 << 15)
-
-/* Transmit status bits */
-
-#define TX_NCOL_MASK		0x0f
-#define TX_FRTL			(1 << 4)
-#define TX_MAX_COL		(1 << 5)
-#define TX_HRT_BEAT		(1 << 6)
-#define TX_DEFER		(1 << 7)
-#define TX_UND_RUN		(1 << 8)
-#define TX_LOST_CTS		(1 << 9)
-#define TX_LOST_CRS		(1 << 10)
-#define TX_LTCOL		(1 << 11)
-#define TX_OK			(1 << 13)
-#define TX_COLL			(1 << 15)
-
-struct i82593_conf_block {
-  u_char fifo_limit : 4,
-  	 forgnesi   : 1,
-  	 fifo_32    : 1,
-  	 d6mod      : 1,
-  	 throttle_enb : 1;
-  u_char throttle   : 6,
-	 cntrxint   : 1,
-	 contin	    : 1;
-  u_char addr_len   : 3,
-  	 acloc 	    : 1,
- 	 preamb_len : 2,
-  	 loopback   : 2;
-  u_char lin_prio   : 3,
-	 tbofstop   : 1,
-	 exp_prio   : 3,
-	 bof_met    : 1;
-  u_char	    : 4,
-	 ifrm_spc   : 4;
-  u_char	    : 5,
-	 slottim_low : 3;
-  u_char slottim_hi : 3,
-		    : 1,
-	 max_retr   : 4;
-  u_char prmisc     : 1,
-	 bc_dis     : 1,
-  		    : 1,
-	 crs_1	    : 1,
-	 nocrc_ins  : 1,
-	 crc_1632   : 1,
-  	 	    : 1,
-  	 crs_cdt    : 1;
-  u_char cs_filter  : 3,
-	 crs_src    : 1,
-	 cd_filter  : 3,
-		    : 1;
-  u_char	    : 2,
-  	 min_fr_len : 6;
-  u_char lng_typ    : 1,
-	 lng_fld    : 1,
-	 rxcrc_xf   : 1,
-	 artx	    : 1,
-	 sarec	    : 1,
-	 tx_jabber  : 1,	/* why is this called max_len in the manual? */
-	 hash_1	    : 1,
-  	 lbpkpol    : 1;
-  u_char	    : 6,
-  	 fdx	    : 1,
-  	  	    : 1;
-  u_char dummy_6    : 6,	/* supposed to be ones */
-  	 mult_ia    : 1,
-  	 dis_bof    : 1;
-  u_char dummy_1    : 1,	/* supposed to be one */
-	 tx_ifs_retrig : 2,
-	 mc_all     : 1,
-	 rcv_mon    : 2,
-	 frag_acpt  : 1,
-  	 tstrttrs   : 1;
-  u_char fretx	    : 1,
-	 runt_eop   : 1,
-	 hw_sw_pin  : 1,
-	 big_endn   : 1,
-	 syncrqs    : 1,
-	 sttlen     : 1,
-	 tx_eop     : 1,
-  	 rx_eop	    : 1;
-  u_char rbuf_size  : 5,
-	 rcvstop    : 1,
-  	 	    : 2;
-};
-
-#define I82593_MAX_MULTICAST_ADDRESSES	128	/* Hardware hashed filter */
-
-#endif /* _I82593_H */
-- 
1.9.2

--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 3/6] include/linux/mfd/ti_ssp.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/mfd/ti_ssp.h does not seem to be used
anywhere. It was orphaned by 3033ee62 "mfd: Remove obsolete ti-ssp
driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/mfd/ti_ssp.h | 93 ----------------------------------------------
 1 file changed, 93 deletions(-)
 delete mode 100644 include/linux/mfd/ti_ssp.h

diff --git a/include/linux/mfd/ti_ssp.h b/include/linux/mfd/ti_ssp.h
deleted file mode 100644
index dbb4b43..0000000
--- a/include/linux/mfd/ti_ssp.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Sequencer Serial Port (SSP) driver for Texas Instruments' SoCs
- *
- * Copyright (C) 2010 Texas Instruments Inc
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-#ifndef __TI_SSP_H__
-#define __TI_SSP_H__
-
-struct ti_ssp_dev_data {
-	const char	*dev_name;
-	void		*pdata;
-	size_t		pdata_size;
-};
-
-struct ti_ssp_data {
-	unsigned long		out_clock;
-	struct ti_ssp_dev_data	dev_data[2];
-};
-
-struct ti_ssp_spi_data {
-	unsigned long	iosel;
-	int		num_cs;
-	void		(*select)(int cs);
-};
-
-/*
- * Sequencer port IO pin configuration bits.  These do not correlate 1-1 with
- * the hardware.  The iosel field in the port data combines iosel1 and iosel2,
- * and is therefore not a direct map to register space.  It is best to use the
- * macros below to construct iosel values.
- *
- * least significant 16 bits --> iosel1
- * most significant 16 bits  --> iosel2
- */
-
-#define SSP_IN			0x0000
-#define SSP_DATA		0x0001
-#define SSP_CLOCK		0x0002
-#define SSP_CHIPSEL		0x0003
-#define SSP_OUT			0x0004
-#define SSP_PIN_SEL(pin, v)	((v) << ((pin) * 3))
-#define SSP_PIN_MASK(pin)	SSP_PIN_SEL(pin, 0x7)
-#define SSP_INPUT_SEL(pin)	((pin) << 16)
-
-/* Sequencer port config bits */
-#define SSP_EARLY_DIN		BIT(8)
-#define SSP_DELAY_DOUT		BIT(9)
-
-/* Sequence map definitions */
-#define SSP_CLK_HIGH		BIT(0)
-#define SSP_CLK_LOW		0
-#define SSP_DATA_HIGH		BIT(1)
-#define SSP_DATA_LOW		0
-#define SSP_CS_HIGH		BIT(2)
-#define SSP_CS_LOW		0
-#define SSP_OUT_MODE		BIT(3)
-#define SSP_IN_MODE		0
-#define SSP_DATA_REG		BIT(4)
-#define SSP_ADDR_REG		0
-
-#define SSP_OPCODE_DIRECT	((0x0) << 5)
-#define SSP_OPCODE_TOGGLE	((0x1) << 5)
-#define SSP_OPCODE_SHIFT	((0x2) << 5)
-#define SSP_OPCODE_BRANCH0	((0x4) << 5)
-#define SSP_OPCODE_BRANCH1	((0x5) << 5)
-#define SSP_OPCODE_BRANCH	((0x6) << 5)
-#define SSP_OPCODE_STOP		((0x7) << 5)
-#define SSP_BRANCH(addr)	((addr) << 8)
-#define SSP_COUNT(cycles)	((cycles) << 8)
-
-int ti_ssp_raw_read(struct device *dev);
-int ti_ssp_raw_write(struct device *dev, u32 val);
-int ti_ssp_load(struct device *dev, int offs, u32* prog, int len);
-int ti_ssp_run(struct device *dev, u32 pc, u32 input, u32 *output);
-int ti_ssp_set_mode(struct device *dev, int mode);
-int ti_ssp_set_iosel(struct device *dev, u32 iosel);
-
-#endif /* __TI_SSP_H__ */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 3/6] include/linux/mfd/ti_ssp.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/mfd/ti_ssp.h does not seem to be used
anywhere. It was orphaned by 3033ee62 "mfd: Remove obsolete ti-ssp
driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/mfd/ti_ssp.h | 93 ----------------------------------------------
 1 file changed, 93 deletions(-)
 delete mode 100644 include/linux/mfd/ti_ssp.h

diff --git a/include/linux/mfd/ti_ssp.h b/include/linux/mfd/ti_ssp.h
deleted file mode 100644
index dbb4b43..0000000
--- a/include/linux/mfd/ti_ssp.h
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * Sequencer Serial Port (SSP) driver for Texas Instruments' SoCs
- *
- * Copyright (C) 2010 Texas Instruments Inc
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-#ifndef __TI_SSP_H__
-#define __TI_SSP_H__
-
-struct ti_ssp_dev_data {
-	const char	*dev_name;
-	void		*pdata;
-	size_t		pdata_size;
-};
-
-struct ti_ssp_data {
-	unsigned long		out_clock;
-	struct ti_ssp_dev_data	dev_data[2];
-};
-
-struct ti_ssp_spi_data {
-	unsigned long	iosel;
-	int		num_cs;
-	void		(*select)(int cs);
-};
-
-/*
- * Sequencer port IO pin configuration bits.  These do not correlate 1-1 with
- * the hardware.  The iosel field in the port data combines iosel1 and iosel2,
- * and is therefore not a direct map to register space.  It is best to use the
- * macros below to construct iosel values.
- *
- * least significant 16 bits --> iosel1
- * most significant 16 bits  --> iosel2
- */
-
-#define SSP_IN			0x0000
-#define SSP_DATA		0x0001
-#define SSP_CLOCK		0x0002
-#define SSP_CHIPSEL		0x0003
-#define SSP_OUT			0x0004
-#define SSP_PIN_SEL(pin, v)	((v) << ((pin) * 3))
-#define SSP_PIN_MASK(pin)	SSP_PIN_SEL(pin, 0x7)
-#define SSP_INPUT_SEL(pin)	((pin) << 16)
-
-/* Sequencer port config bits */
-#define SSP_EARLY_DIN		BIT(8)
-#define SSP_DELAY_DOUT		BIT(9)
-
-/* Sequence map definitions */
-#define SSP_CLK_HIGH		BIT(0)
-#define SSP_CLK_LOW		0
-#define SSP_DATA_HIGH		BIT(1)
-#define SSP_DATA_LOW		0
-#define SSP_CS_HIGH		BIT(2)
-#define SSP_CS_LOW		0
-#define SSP_OUT_MODE		BIT(3)
-#define SSP_IN_MODE		0
-#define SSP_DATA_REG		BIT(4)
-#define SSP_ADDR_REG		0
-
-#define SSP_OPCODE_DIRECT	((0x0) << 5)
-#define SSP_OPCODE_TOGGLE	((0x1) << 5)
-#define SSP_OPCODE_SHIFT	((0x2) << 5)
-#define SSP_OPCODE_BRANCH0	((0x4) << 5)
-#define SSP_OPCODE_BRANCH1	((0x5) << 5)
-#define SSP_OPCODE_BRANCH	((0x6) << 5)
-#define SSP_OPCODE_STOP		((0x7) << 5)
-#define SSP_BRANCH(addr)	((addr) << 8)
-#define SSP_COUNT(cycles)	((cycles) << 8)
-
-int ti_ssp_raw_read(struct device *dev);
-int ti_ssp_raw_write(struct device *dev, u32 val);
-int ti_ssp_load(struct device *dev, int offs, u32* prog, int len);
-int ti_ssp_run(struct device *dev, u32 pc, u32 input, u32 *output);
-int ti_ssp_set_mode(struct device *dev, int mode);
-int ti_ssp_set_iosel(struct device *dev, u32 iosel);
-
-#endif /* __TI_SSP_H__ */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 4/6] include/linux/phonedev.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

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 <linux@rasmusvillemoes.dk>
---
 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 <linux/types.h>
-
-#ifdef __KERNEL__
-
-#include <linux/poll.h>
-
-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
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 4/6] include/linux/phonedev.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

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 <linux@rasmusvillemoes.dk>
---
 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 <linux/types.h>
-
-#ifdef __KERNEL__
-
-#include <linux/poll.h>
-
-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
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 5/6] include/linux/platform_data/tegra_emc.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/platform_data/tegra_emc.h does not seem
to be used anywhere. It was orphaned by a7cbe92c "ARM: tegra: remove
tegra EMC scaling driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/platform_data/tegra_emc.h | 34 ---------------------------------
 1 file changed, 34 deletions(-)
 delete mode 100644 include/linux/platform_data/tegra_emc.h

diff --git a/include/linux/platform_data/tegra_emc.h b/include/linux/platform_data/tegra_emc.h
deleted file mode 100644
index df67505..0000000
--- a/include/linux/platform_data/tegra_emc.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2011 Google, Inc.
- *
- * Author:
- *	Colin Cross <ccross@android.com>
- *	Olof Johansson <olof@lixom.net>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#ifndef __TEGRA_EMC_H_
-#define __TEGRA_EMC_H_
-
-#define TEGRA_EMC_NUM_REGS 46
-
-struct tegra_emc_table {
-	unsigned long rate;
-	u32 regs[TEGRA_EMC_NUM_REGS];
-};
-
-struct tegra_emc_pdata {
-	int num_tables;
-	struct tegra_emc_table *tables;
-};
-
-#endif
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 5/6] include/linux/platform_data/tegra_emc.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/linux/platform_data/tegra_emc.h does not seem
to be used anywhere. It was orphaned by a7cbe92c "ARM: tegra: remove
tegra EMC scaling driver". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/linux/platform_data/tegra_emc.h | 34 ---------------------------------
 1 file changed, 34 deletions(-)
 delete mode 100644 include/linux/platform_data/tegra_emc.h

diff --git a/include/linux/platform_data/tegra_emc.h b/include/linux/platform_data/tegra_emc.h
deleted file mode 100644
index df67505..0000000
--- a/include/linux/platform_data/tegra_emc.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2011 Google, Inc.
- *
- * Author:
- *	Colin Cross <ccross@android.com>
- *	Olof Johansson <olof@lixom.net>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#ifndef __TEGRA_EMC_H_
-#define __TEGRA_EMC_H_
-
-#define TEGRA_EMC_NUM_REGS 46
-
-struct tegra_emc_table {
-	unsigned long rate;
-	u32 regs[TEGRA_EMC_NUM_REGS];
-};
-
-struct tegra_emc_pdata {
-	int num_tables;
-	struct tegra_emc_table *tables;
-};
-
-#endif
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 6/6] include/rxrpc/types.h: Remove unused header
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:27   ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/rxrpc/types.h does not seem to be used
anywhere. It was orphaned by 63b6be55 "[AF_RXRPC]: Delete the old
RxRPC code.". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/rxrpc/types.h | 41 -----------------------------------------
 1 file changed, 41 deletions(-)
 delete mode 100644 include/rxrpc/types.h

diff --git a/include/rxrpc/types.h b/include/rxrpc/types.h
deleted file mode 100644
index 30d48f6..0000000
--- a/include/rxrpc/types.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* types.h: Rx types
- *
- * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
- * Written by David Howells (dhowells@redhat.com)
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
-
-#ifndef _LINUX_RXRPC_TYPES_H
-#define _LINUX_RXRPC_TYPES_H
-
-#include <linux/types.h>
-#include <linux/list.h>
-#include <linux/socket.h>
-#include <linux/in.h>
-#include <linux/spinlock.h>
-#include <linux/atomic.h>
-
-typedef uint32_t	rxrpc_seq_t;	/* Rx message sequence number */
-typedef uint32_t	rxrpc_serial_t;	/* Rx message serial number */
-typedef __be32	rxrpc_seq_net_t; /* on-the-wire Rx message sequence number */
-typedef __be32	rxrpc_serial_net_t; /* on-the-wire Rx message serial number */
-
-struct rxrpc_call;
-struct rxrpc_connection;
-struct rxrpc_header;
-struct rxrpc_message;
-struct rxrpc_operation;
-struct rxrpc_peer;
-struct rxrpc_service;
-typedef struct rxrpc_timer rxrpc_timer_t;
-struct rxrpc_transport;
-
-typedef void (*rxrpc_call_attn_func_t)(struct rxrpc_call *call);
-typedef void (*rxrpc_call_error_func_t)(struct rxrpc_call *call);
-typedef void (*rxrpc_call_aemap_func_t)(struct rxrpc_call *call);
-
-#endif /* _LINUX_RXRPC_TYPES_H */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [PATCH 6/6] include/rxrpc/types.h: Remove unused header
@ 2014-06-24 17:27   ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-06-24 17:27 UTC (permalink / raw)
  To: Greg Kroah-Hartman, kernel-janitors; +Cc: linux-kernel, Rasmus Villemoes

The header file include/rxrpc/types.h does not seem to be used
anywhere. It was orphaned by 63b6be55 "[AF_RXRPC]: Delete the old
RxRPC code.". Remove it.

Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
---
 include/rxrpc/types.h | 41 -----------------------------------------
 1 file changed, 41 deletions(-)
 delete mode 100644 include/rxrpc/types.h

diff --git a/include/rxrpc/types.h b/include/rxrpc/types.h
deleted file mode 100644
index 30d48f6..0000000
--- a/include/rxrpc/types.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* types.h: Rx types
- *
- * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
- * Written by David Howells (dhowells@redhat.com)
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
-
-#ifndef _LINUX_RXRPC_TYPES_H
-#define _LINUX_RXRPC_TYPES_H
-
-#include <linux/types.h>
-#include <linux/list.h>
-#include <linux/socket.h>
-#include <linux/in.h>
-#include <linux/spinlock.h>
-#include <linux/atomic.h>
-
-typedef uint32_t	rxrpc_seq_t;	/* Rx message sequence number */
-typedef uint32_t	rxrpc_serial_t;	/* Rx message serial number */
-typedef __be32	rxrpc_seq_net_t; /* on-the-wire Rx message sequence number */
-typedef __be32	rxrpc_serial_net_t; /* on-the-wire Rx message serial number */
-
-struct rxrpc_call;
-struct rxrpc_connection;
-struct rxrpc_header;
-struct rxrpc_message;
-struct rxrpc_operation;
-struct rxrpc_peer;
-struct rxrpc_service;
-typedef struct rxrpc_timer rxrpc_timer_t;
-struct rxrpc_transport;
-
-typedef void (*rxrpc_call_attn_func_t)(struct rxrpc_call *call);
-typedef void (*rxrpc_call_error_func_t)(struct rxrpc_call *call);
-typedef void (*rxrpc_call_aemap_func_t)(struct rxrpc_call *call);
-
-#endif /* _LINUX_RXRPC_TYPES_H */
-- 
1.9.2


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
  2014-06-24 17:27 ` Rasmus Villemoes
@ 2014-06-24 17:34   ` Joe Perches
  -1 siblings, 0 replies; 26+ messages in thread
From: Joe Perches @ 2014-06-24 17:34 UTC (permalink / raw)
  To: Rasmus Villemoes; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> AFAICT, these headers are not used anywhere, and are just accidental
> leftovers from past cleanups.

Thanks.



^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
@ 2014-06-24 17:34   ` Joe Perches
  0 siblings, 0 replies; 26+ messages in thread
From: Joe Perches @ 2014-06-24 17:34 UTC (permalink / raw)
  To: Rasmus Villemoes; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> AFAICT, these headers are not used anywhere, and are just accidental
> leftovers from past cleanups.

Thanks.



^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 5/6] include/linux/platform_data/tegra_emc.h: Remove unused header
  2014-06-24 17:27   ` Rasmus Villemoes
@ 2014-06-24 19:21     ` Stephen Warren
  -1 siblings, 0 replies; 26+ messages in thread
From: Stephen Warren @ 2014-06-24 19:21 UTC (permalink / raw)
  To: Rasmus Villemoes, Greg Kroah-Hartman
  Cc: kernel-janitors, linux-kernel, linux-tegra

On 06/24/2014 11:27 AM, Rasmus Villemoes wrote:
> The header file include/linux/platform_data/tegra_emc.h does not seem
> to be used anywhere. It was orphaned by a7cbe92c "ARM: tegra: remove
> tegra EMC scaling driver". Remove it.

Acked-by: Stephen Warren <swarren@nvidia.com>

Perhaps this should go through the arm-soc tree like the original
commit, but it doesn't really matter either way.

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 5/6] include/linux/platform_data/tegra_emc.h: Remove unused header
@ 2014-06-24 19:21     ` Stephen Warren
  0 siblings, 0 replies; 26+ messages in thread
From: Stephen Warren @ 2014-06-24 19:21 UTC (permalink / raw)
  To: Rasmus Villemoes, Greg Kroah-Hartman
  Cc: kernel-janitors, linux-kernel, linux-tegra

On 06/24/2014 11:27 AM, Rasmus Villemoes wrote:
> The header file include/linux/platform_data/tegra_emc.h does not seem
> to be used anywhere. It was orphaned by a7cbe92c "ARM: tegra: remove
> tegra EMC scaling driver". Remove it.

Acked-by: Stephen Warren <swarren@nvidia.com>

Perhaps this should go through the arm-soc tree like the original
commit, but it doesn't really matter either way.

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
  2014-06-24 17:34   ` Joe Perches
@ 2014-08-22 15:33     ` Rasmus Villemoes
  -1 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-08-22 15:33 UTC (permalink / raw)
  To: Joe Perches; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

Joe Perches <joe@perches.com> writes:

> On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
>> AFAICT, these headers are not used anywhere, and are just accidental
>> leftovers from past cleanups.
>
> Thanks.

Did anyone pick these [1] up? All six files still seem to be present.

Thanks,
Rasmus

[1]
http://thread.gmane.org/gmane.linux.kernel.janitors/30940/focus=1732006

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
@ 2014-08-22 15:33     ` Rasmus Villemoes
  0 siblings, 0 replies; 26+ messages in thread
From: Rasmus Villemoes @ 2014-08-22 15:33 UTC (permalink / raw)
  To: Joe Perches; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

Joe Perches <joe@perches.com> writes:

> On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
>> AFAICT, these headers are not used anywhere, and are just accidental
>> leftovers from past cleanups.
>
> Thanks.

Did anyone pick these [1] up? All six files still seem to be present.

Thanks,
Rasmus

[1]
http://thread.gmane.org/gmane.linux.kernel.janitors/30940/focus\x1732006

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
  2014-08-22 15:33     ` Rasmus Villemoes
@ 2014-08-22 16:21       ` Joe Perches
  -1 siblings, 0 replies; 26+ messages in thread
From: Joe Perches @ 2014-08-22 16:21 UTC (permalink / raw)
  To: Rasmus Villemoes; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Fri, 2014-08-22 at 17:33 +0200, Rasmus Villemoes wrote:
> Joe Perches <joe@perches.com> writes:
> 
> > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> >> AFAICT, these headers are not used anywhere, and are just accidental
> >> leftovers from past cleanups.
> >
> > Thanks.
> 
> Did anyone pick these [1] up? All six files still seem to be present.

Doesn't look like it.  There is no guaranteed
mechanism to get these types of patches applied.

I suggest you resend these to a wider audience.

Jiri Kosina <trivial@kernel.org> is the maintainer of
the "trivial" tree, some patches of this type go
through that tree every once in awhile.

Andrew Morton <akpm@linux-foundation.org> sometimes
picks up things like this.

Also, make sure to send the individual deletions to the
original maintainers, authors and signers of each file.

For instance:

$ ./scripts/get_maintainer.pl -f include/linux/platform_data/tegra_emc.h
Stephen Warren <swarren@wwwdotorg.org> (supporter:TEGRA ARCHITECTUR...)
Thierry Reding <thierry.reding@gmail.com> (supporter:TEGRA ARCHITECTUR...)
linux-tegra@vger.kernel.org (open list:TEGRA ARCHITECTUR...)

$ git log --format="Author: %an <%ae>" include/linux/platform_data/tegra_emc.h
Author: Olof Johansson <olof@lixom.net>

Lastly, if none of that works within a couple of
release cycles, send them directly to Linus.



^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
@ 2014-08-22 16:21       ` Joe Perches
  0 siblings, 0 replies; 26+ messages in thread
From: Joe Perches @ 2014-08-22 16:21 UTC (permalink / raw)
  To: Rasmus Villemoes; +Cc: Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Fri, 2014-08-22 at 17:33 +0200, Rasmus Villemoes wrote:
> Joe Perches <joe@perches.com> writes:
> 
> > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> >> AFAICT, these headers are not used anywhere, and are just accidental
> >> leftovers from past cleanups.
> >
> > Thanks.
> 
> Did anyone pick these [1] up? All six files still seem to be present.

Doesn't look like it.  There is no guaranteed
mechanism to get these types of patches applied.

I suggest you resend these to a wider audience.

Jiri Kosina <trivial@kernel.org> is the maintainer of
the "trivial" tree, some patches of this type go
through that tree every once in awhile.

Andrew Morton <akpm@linux-foundation.org> sometimes
picks up things like this.

Also, make sure to send the individual deletions to the
original maintainers, authors and signers of each file.

For instance:

$ ./scripts/get_maintainer.pl -f include/linux/platform_data/tegra_emc.h
Stephen Warren <swarren@wwwdotorg.org> (supporter:TEGRA ARCHITECTUR...)
Thierry Reding <thierry.reding@gmail.com> (supporter:TEGRA ARCHITECTUR...)
linux-tegra@vger.kernel.org (open list:TEGRA ARCHITECTUR...)

$ git log --format="Author: %an <%ae>" include/linux/platform_data/tegra_emc.h
Author: Olof Johansson <olof@lixom.net>

Lastly, if none of that works within a couple of
release cycles, send them directly to Linus.



^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
  2014-08-22 16:21       ` Joe Perches
@ 2014-08-22 16:25         ` Julia Lawall
  -1 siblings, 0 replies; 26+ messages in thread
From: Julia Lawall @ 2014-08-22 16:25 UTC (permalink / raw)
  To: Joe Perches
  Cc: Rasmus Villemoes, Greg Kroah-Hartman, kernel-janitors, linux-kernel



On Fri, 22 Aug 2014, Joe Perches wrote:

> On Fri, 2014-08-22 at 17:33 +0200, Rasmus Villemoes wrote:
> > Joe Perches <joe@perches.com> writes:
> > 
> > > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> > >> AFAICT, these headers are not used anywhere, and are just accidental
> > >> leftovers from past cleanups.
> > >
> > > Thanks.
> > 
> > Did anyone pick these [1] up? All six files still seem to be present.
> 
> Doesn't look like it.  There is no guaranteed
> mechanism to get these types of patches applied.
> 
> I suggest you resend these to a wider audience.
> 
> Jiri Kosina <trivial@kernel.org> is the maintainer of
> the "trivial" tree, some patches of this type go
> through that tree every once in awhile.
> 
> Andrew Morton <akpm@linux-foundation.org> sometimes
> picks up things like this.
> 
> Also, make sure to send the individual deletions to the
> original maintainers, authors and signers of each file.
> 
> For instance:
> 
> $ ./scripts/get_maintainer.pl -f include/linux/platform_data/tegra_emc.h
> Stephen Warren <swarren@wwwdotorg.org> (supporter:TEGRA ARCHITECTUR...)
> Thierry Reding <thierry.reding@gmail.com> (supporter:TEGRA ARCHITECTUR...)
> linux-tegra@vger.kernel.org (open list:TEGRA ARCHITECTUR...)
> 
> $ git log --format="Author: %an <%ae>" include/linux/platform_data/tegra_emc.h
> Author: Olof Johansson <olof@lixom.net>
> 
> Lastly, if none of that works within a couple of
> release cycles, send them directly to Linus.

If the individual patches are independent, I was told to make that 
explicit.  Otherwise, each person thinks someone else should take care of 
it.

julia

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
@ 2014-08-22 16:25         ` Julia Lawall
  0 siblings, 0 replies; 26+ messages in thread
From: Julia Lawall @ 2014-08-22 16:25 UTC (permalink / raw)
  To: Joe Perches
  Cc: Rasmus Villemoes, Greg Kroah-Hartman, kernel-janitors, linux-kernel



On Fri, 22 Aug 2014, Joe Perches wrote:

> On Fri, 2014-08-22 at 17:33 +0200, Rasmus Villemoes wrote:
> > Joe Perches <joe@perches.com> writes:
> > 
> > > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> > >> AFAICT, these headers are not used anywhere, and are just accidental
> > >> leftovers from past cleanups.
> > >
> > > Thanks.
> > 
> > Did anyone pick these [1] up? All six files still seem to be present.
> 
> Doesn't look like it.  There is no guaranteed
> mechanism to get these types of patches applied.
> 
> I suggest you resend these to a wider audience.
> 
> Jiri Kosina <trivial@kernel.org> is the maintainer of
> the "trivial" tree, some patches of this type go
> through that tree every once in awhile.
> 
> Andrew Morton <akpm@linux-foundation.org> sometimes
> picks up things like this.
> 
> Also, make sure to send the individual deletions to the
> original maintainers, authors and signers of each file.
> 
> For instance:
> 
> $ ./scripts/get_maintainer.pl -f include/linux/platform_data/tegra_emc.h
> Stephen Warren <swarren@wwwdotorg.org> (supporter:TEGRA ARCHITECTUR...)
> Thierry Reding <thierry.reding@gmail.com> (supporter:TEGRA ARCHITECTUR...)
> linux-tegra@vger.kernel.org (open list:TEGRA ARCHITECTUR...)
> 
> $ git log --format="Author: %an <%ae>" include/linux/platform_data/tegra_emc.h
> Author: Olof Johansson <olof@lixom.net>
> 
> Lastly, if none of that works within a couple of
> release cycles, send them directly to Linus.

If the individual patches are independent, I was told to make that 
explicit.  Otherwise, each person thinks someone else should take care of 
it.

julia

^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
  2014-08-22 15:33     ` Rasmus Villemoes
@ 2014-08-27 11:04       ` Dan Carpenter
  -1 siblings, 0 replies; 26+ messages in thread
From: Dan Carpenter @ 2014-08-27 11:04 UTC (permalink / raw)
  To: Rasmus Villemoes
  Cc: Joe Perches, Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Fri, Aug 22, 2014 at 05:33:24PM +0200, Rasmus Villemoes wrote:
> Joe Perches <joe@perches.com> writes:
> 
> > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> >> AFAICT, these headers are not used anywhere, and are just accidental
> >> leftovers from past cleanups.
> >
> > Thanks.
> 
> Did anyone pick these [1] up? All six files still seem to be present.

Greg is not the right maintainer for most of these.  Resend them to the
correct people.

patch 1 I never received it
patch 2 netdev and Dave M.
patch 3 Samuel Ortiz <sameo@linux.intel.com>, Lee Jones <lee.jones@linaro.org>
patch 4 Greg or Dave M, netdev
patch 5 <linux-tegra@vger.kernel.org>
patch 6 netdev and Dave M.

regards,
dan carpenter


^ permalink raw reply	[flat|nested] 26+ messages in thread

* Re: [PATCH 0/6] Remove various orphaned header files
@ 2014-08-27 11:04       ` Dan Carpenter
  0 siblings, 0 replies; 26+ messages in thread
From: Dan Carpenter @ 2014-08-27 11:04 UTC (permalink / raw)
  To: Rasmus Villemoes
  Cc: Joe Perches, Greg Kroah-Hartman, kernel-janitors, linux-kernel

On Fri, Aug 22, 2014 at 05:33:24PM +0200, Rasmus Villemoes wrote:
> Joe Perches <joe@perches.com> writes:
> 
> > On Tue, 2014-06-24 at 19:27 +0200, Rasmus Villemoes wrote:
> >> AFAICT, these headers are not used anywhere, and are just accidental
> >> leftovers from past cleanups.
> >
> > Thanks.
> 
> Did anyone pick these [1] up? All six files still seem to be present.

Greg is not the right maintainer for most of these.  Resend them to the
correct people.

patch 1 I never received it
patch 2 netdev and Dave M.
patch 3 Samuel Ortiz <sameo@linux.intel.com>, Lee Jones <lee.jones@linaro.org>
patch 4 Greg or Dave M, netdev
patch 5 <linux-tegra@vger.kernel.org>
patch 6 netdev and Dave M.

regards,
dan carpenter


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2014-08-27 11:04 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-24 17:27 [PATCH 0/6] Remove various orphaned header files Rasmus Villemoes
2014-06-24 17:27 ` Rasmus Villemoes
2014-06-24 17:27 ` [PATCH 1/6] include/linux/cycx_x25.h: Remove unused header Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 17:27 ` [PATCH 2/6] include/linux/i82593.h: " Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 17:27 ` [PATCH 3/6] include/linux/mfd/ti_ssp.h: " Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 17:27 ` [PATCH 4/6] include/linux/phonedev.h: " Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 17:27 ` [PATCH 5/6] include/linux/platform_data/tegra_emc.h: " Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 19:21   ` Stephen Warren
2014-06-24 19:21     ` Stephen Warren
2014-06-24 17:27 ` [PATCH 6/6] include/rxrpc/types.h: " Rasmus Villemoes
2014-06-24 17:27   ` Rasmus Villemoes
2014-06-24 17:34 ` [PATCH 0/6] Remove various orphaned header files Joe Perches
2014-06-24 17:34   ` Joe Perches
2014-08-22 15:33   ` Rasmus Villemoes
2014-08-22 15:33     ` Rasmus Villemoes
2014-08-22 16:21     ` Joe Perches
2014-08-22 16:21       ` Joe Perches
2014-08-22 16:25       ` Julia Lawall
2014-08-22 16:25         ` Julia Lawall
2014-08-27 11:04     ` Dan Carpenter
2014-08-27 11:04       ` Dan Carpenter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.