Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

i2o: move to staging

The I2O layer deals with a technology that to say the least didn't catch on
in the market.

The only relevant products are some of the AMI MegaRAID - which supported I2O
and its native mode (The native mode is faster and runs on Linux), an
obscure crypto ethernet card that's now so many years out of date nobody
would use it, the old DPT controllers, which speak their own dialect and
have their own driver - and ermm.. thats about it.

We also know the code isn't in good shape as recently a patch was proposed
and queried as buggy, which in turn showed the existing code was broken
already by prior "clean up" and nobody had noticed that either.

It's coding style robot code nothing more. Like some forgotten corridor
cleaned relentlessly by a lost Roomba but where no user has trodden in years.

Move it to staging and then to /dev/null.

The headers remain as they are shared with dpt_i2o.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alan Cox and committed by
Greg Kroah-Hartman
2cbf7fe2 178cf7de

+15 -16
-2
drivers/Kconfig
··· 36 36 37 37 source "drivers/firewire/Kconfig" 38 38 39 - source "drivers/message/i2o/Kconfig" 40 - 41 39 source "drivers/macintosh/Kconfig" 42 40 43 41 source "drivers/net/Kconfig"
-1
drivers/message/Makefile
··· 2 2 # Makefile for MPT based block devices 3 3 # 4 4 5 - obj-$(CONFIG_I2O) += i2o/ 6 5 obj-$(CONFIG_FUSION) += fusion/
-1
drivers/message/i2o/Kconfig drivers/staging/i2o/Kconfig
··· 1 - 2 1 menuconfig I2O 3 2 tristate "I2O device support" 4 3 depends on PCI
drivers/message/i2o/Makefile drivers/staging/i2o/Makefile
drivers/message/i2o/README drivers/staging/i2o/README
drivers/message/i2o/README.ioctl drivers/staging/i2o/README.ioctl
+1 -1
drivers/message/i2o/bus-osm.c drivers/staging/i2o/bus-osm.c
··· 14 14 */ 15 15 16 16 #include <linux/module.h> 17 - #include <linux/i2o.h> 17 + #include "i2o.h" 18 18 19 19 #define OSM_NAME "bus-osm" 20 20 #define OSM_VERSION "1.317"
+1 -1
drivers/message/i2o/config-osm.c drivers/staging/i2o/config-osm.c
··· 14 14 */ 15 15 16 16 #include <linux/module.h> 17 - #include <linux/i2o.h> 17 + #include "i2o.h" 18 18 #include <linux/dcache.h> 19 19 #include <linux/namei.h> 20 20 #include <linux/fs.h>
drivers/message/i2o/core.h drivers/staging/i2o/core.h
+1 -1
drivers/message/i2o/debug.c drivers/staging/i2o/debug.c
··· 1 1 #include <linux/module.h> 2 2 #include <linux/kernel.h> 3 3 #include <linux/pci.h> 4 - #include <linux/i2o.h> 4 + #include "i2o.h" 5 5 6 6 static void i2o_report_util_cmd(u8 cmd); 7 7 static void i2o_report_exec_cmd(u8 cmd);
+1 -1
drivers/message/i2o/device.c drivers/staging/i2o/device.c
··· 14 14 */ 15 15 16 16 #include <linux/module.h> 17 - #include <linux/i2o.h> 17 + #include "i2o.h" 18 18 #include <linux/delay.h> 19 19 #include <linux/string.h> 20 20 #include <linux/slab.h>
+1 -1
drivers/message/i2o/driver.c drivers/staging/i2o/driver.c
··· 16 16 #include <linux/device.h> 17 17 #include <linux/module.h> 18 18 #include <linux/rwsem.h> 19 - #include <linux/i2o.h> 19 + #include "i2o.h" 20 20 #include <linux/workqueue.h> 21 21 #include <linux/string.h> 22 22 #include <linux/slab.h>
+1 -1
drivers/message/i2o/exec-osm.c drivers/staging/i2o/exec-osm.c
··· 28 28 */ 29 29 30 30 #include <linux/module.h> 31 - #include <linux/i2o.h> 31 + #include "i2o.h" 32 32 #include <linux/delay.h> 33 33 #include <linux/workqueue.h> 34 34 #include <linux/string.h>
+1 -1
drivers/message/i2o/i2o_block.c drivers/staging/i2o/i2o_block.c
··· 52 52 53 53 #include <linux/module.h> 54 54 #include <linux/slab.h> 55 - #include <linux/i2o.h> 55 + #include "i2o.h" 56 56 #include <linux/mutex.h> 57 57 58 58 #include <linux/mempool.h>
drivers/message/i2o/i2o_block.h drivers/staging/i2o/i2o_block.h
drivers/message/i2o/i2o_config.c drivers/staging/i2o/i2o_config.c
+1 -1
drivers/message/i2o/i2o_proc.c drivers/staging/i2o/i2o_proc.c
··· 39 39 #include <linux/types.h> 40 40 #include <linux/kernel.h> 41 41 #include <linux/pci.h> 42 - #include <linux/i2o.h> 42 + #include "i2o.h" 43 43 #include <linux/slab.h> 44 44 #include <linux/proc_fs.h> 45 45 #include <linux/seq_file.h>
+1 -1
drivers/message/i2o/i2o_scsi.c drivers/staging/i2o/i2o_scsi.c
··· 53 53 #include <linux/prefetch.h> 54 54 #include <linux/pci.h> 55 55 #include <linux/blkdev.h> 56 - #include <linux/i2o.h> 56 + #include "i2o.h" 57 57 #include <linux/scatterlist.h> 58 58 59 59 #include <asm/dma.h>
+1 -1
drivers/message/i2o/iop.c drivers/staging/i2o/iop.c
··· 26 26 */ 27 27 28 28 #include <linux/module.h> 29 - #include <linux/i2o.h> 29 + #include "i2o.h" 30 30 #include <linux/delay.h> 31 31 #include <linux/sched.h> 32 32 #include <linux/slab.h>
+1 -1
drivers/message/i2o/memory.c drivers/staging/i2o/memory.c
··· 11 11 */ 12 12 13 13 #include <linux/module.h> 14 - #include <linux/i2o.h> 14 + #include "i2o.h" 15 15 #include <linux/delay.h> 16 16 #include <linux/string.h> 17 17 #include <linux/slab.h>
+1 -1
drivers/message/i2o/pci.c drivers/staging/i2o/pci.c
··· 30 30 #include <linux/pci.h> 31 31 #include <linux/interrupt.h> 32 32 #include <linux/slab.h> 33 - #include <linux/i2o.h> 33 + #include "i2o.h" 34 34 #include <linux/module.h> 35 35 #include "core.h" 36 36
+2
drivers/staging/Kconfig
··· 110 110 111 111 source "drivers/staging/fbtft/Kconfig" 112 112 113 + source "drivers/staging/i2o/Kconfig" 114 + 113 115 endif # STAGING
+1
drivers/staging/Makefile
··· 47 47 obj-$(CONFIG_UNISYSSPAR) += unisys/ 48 48 obj-$(CONFIG_COMMON_CLK_XLNX_CLKWZRD) += clocking-wizard/ 49 49 obj-$(CONFIG_FB_TFT) += fbtft/ 50 + obj-$(CONFIG_I2O) += i2o/
include/linux/i2o.h drivers/staging/i2o/i2o.h