Commit 0ee381c2 authored by Linus Torvalds's avatar Linus Torvalds

Merge bk://gkernel.bkbits.net/misc-2.6

into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents 7e5302e7 5eef782f
...@@ -2377,16 +2377,16 @@ Your cooperation is appreciated. ...@@ -2377,16 +2377,16 @@ Your cooperation is appreciated.
1 = /dev/gpib1 Second GPIB bus 1 = /dev/gpib1 Second GPIB bus
... ...
160 block Carmel 8-port SATA Disks on First Controller 160 block Promise SX8 8-port SATA Disks on First Controller
0 = /dev/carmel/0 SATA disk 0 whole disk 0 = /dev/sx8/0 SATA disk 0 whole disk
1 = /dev/carmel/0p1 SATA disk 0 partition 1 1 = /dev/sx8/0p1 SATA disk 0 partition 1
... ...
31 = /dev/carmel/0p31 SATA disk 0 partition 31 31 = /dev/sx8/0p31 SATA disk 0 partition 31
32 = /dev/carmel/1 SATA disk 1 whole disk 32 = /dev/sx8/1 SATA disk 1 whole disk
64 = /dev/carmel/2 SATA disk 2 whole disk 64 = /dev/sx8/2 SATA disk 2 whole disk
... ...
224 = /dev/carmel/7 SATA disk 7 whole disk 224 = /dev/sx8/7 SATA disk 7 whole disk
Partitions are handled in the same way as for IDE Partitions are handled in the same way as for IDE
disks (see major number 3) except that the limit on disks (see major number 3) except that the limit on
...@@ -2400,16 +2400,16 @@ Your cooperation is appreciated. ...@@ -2400,16 +2400,16 @@ Your cooperation is appreciated.
17 = /dev/irlpt1 Second IrLPT device 17 = /dev/irlpt1 Second IrLPT device
... ...
161 block Carmel 8-port SATA Disks on Second Controller 161 block Promise SX8 8-port SATA Disks on Second Controller
0 = /dev/carmel/8 SATA disk 8 whole disk 0 = /dev/sx8/8 SATA disk 8 whole disk
1 = /dev/carmel/8p1 SATA disk 8 partition 1 1 = /dev/sx8/8p1 SATA disk 8 partition 1
... ...
31 = /dev/carmel/8p31 SATA disk 8 partition 31 31 = /dev/sx8/8p31 SATA disk 8 partition 31
32 = /dev/carmel/9 SATA disk 9 whole disk 32 = /dev/sx8/9 SATA disk 9 whole disk
64 = /dev/carmel/10 SATA disk 10 whole disk 64 = /dev/sx8/10 SATA disk 10 whole disk
... ...
224 = /dev/carmel/15 SATA disk 15 whole disk 224 = /dev/sx8/15 SATA disk 15 whole disk
Partitions are handled in the same way as for IDE Partitions are handled in the same way as for IDE
disks (see major number 3) except that the limit on disks (see major number 3) except that the limit on
......
...@@ -285,14 +285,14 @@ config BLK_DEV_NBD ...@@ -285,14 +285,14 @@ config BLK_DEV_NBD
If unsure, say N. If unsure, say N.
config BLK_DEV_CARMEL config BLK_DEV_SX8
tristate "Promise SATA SX8 (carmel) support" tristate "Promise SATA SX8 support"
depends on PCI depends on PCI
---help--- ---help---
Saying Y or M here will enable support for the Saying Y or M here will enable support for the
Promise SATA SX8 ("carmel") controllers. Promise SATA SX8 controllers.
Use devices /dev/carmel/$N and /dev/carmel/$Np$M. Use devices /dev/sx8/$N and /dev/sx8/$Np$M.
config BLK_DEV_RAM config BLK_DEV_RAM
tristate "RAM disk support" tristate "RAM disk support"
......
...@@ -41,5 +41,5 @@ obj-$(CONFIG_BLK_DEV_NBD) += nbd.o ...@@ -41,5 +41,5 @@ obj-$(CONFIG_BLK_DEV_NBD) += nbd.o
obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o obj-$(CONFIG_BLK_DEV_CRYPTOLOOP) += cryptoloop.o
obj-$(CONFIG_VIODASD) += viodasd.o obj-$(CONFIG_VIODASD) += viodasd.o
obj-$(CONFIG_BLK_DEV_CARMEL) += carmel.o obj-$(CONFIG_BLK_DEV_SX8) += sx8.o
/* /*
* carmel.c: Driver for Promise SATA SX8 looks-like-I2O hardware * sx8.c: Driver for Promise SATA SX8 looks-like-I2O hardware
* *
* Copyright 2004 Red Hat, Inc. * Copyright 2004 Red Hat, Inc.
* *
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
MODULE_AUTHOR("Jeff Garzik"); MODULE_AUTHOR("Jeff Garzik");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Promise SATA SX8 (carmel) block driver"); MODULE_DESCRIPTION("Promise SATA SX8 block driver");
#if 0 #if 0
#define CARM_DEBUG #define CARM_DEBUG
...@@ -43,7 +43,7 @@ MODULE_DESCRIPTION("Promise SATA SX8 (carmel) block driver"); ...@@ -43,7 +43,7 @@ MODULE_DESCRIPTION("Promise SATA SX8 (carmel) block driver");
#endif #endif
#undef CARM_NDEBUG #undef CARM_NDEBUG
#define DRV_NAME "carmel" #define DRV_NAME "sx8"
#define DRV_VERSION "0.8" #define DRV_VERSION "0.8"
#define PFX DRV_NAME ": " #define PFX DRV_NAME ": "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment