Re: sata_mv: problems using it as a platform_driver

2008-02-11 Thread Tejun Heo
Saeed Bishara wrote: host-private_data = hpriv; hpriv-n_ports = n_ports; -host-iomap = NULL; hpriv-base = ioremap(res-start, res-end - res-start + 1); +host-iomap = hpriv-base; hpriv-base -= MV_SATAHC0_REG_BASE; rc = mv_create_dma_pools(hpriv, pdev-dev);

Re: sata_mv: problems using it as a platform_driver

2008-02-11 Thread Saeed Bishara
Mark Lord wrote: Byron Bradley wrote: I'm having problems getting the sata_mv driver working as a platform driver on the QNAP TS-209 and the Linkstation/Kurobox (both are Marvell Orion 88f5182 based devices). First of all it would oops in mv_port_start() while calling dma_pool_alloc(), the

Re: sata_mv: problems using it as a platform_driver

2008-02-11 Thread Saeed Bishara
host-private_data = hpriv; hpriv-n_ports = n_ports; -host-iomap = NULL; hpriv-base = ioremap(res-start, res-end - res-start + 1); +host-iomap = hpriv-base; hpriv-base -= MV_SATAHC0_REG_BASE; rc = mv_create_dma_pools(hpriv, pdev-dev); .. Well, that's

sata_mv: problems using it as a platform_driver

2008-02-07 Thread Byron Bradley
I'm having problems getting the sata_mv driver working as a platform driver on the QNAP TS-209 and the Linkstation/Kurobox (both are Marvell Orion 88f5182 based devices). First of all it would oops in mv_port_start() while calling dma_pool_alloc(), the patch to fix this is at the end of this

Re: sata_mv: problems using it as a platform_driver

2008-02-07 Thread Byron Bradley
On Fri, 8 Feb 2008, Byron Bradley wrote: I'm having problems getting the sata_mv driver working as a platform driver on the QNAP TS-209 and the Linkstation/Kurobox (both are Marvell Orion 88f5182 based devices). First of all it would oops in mv_port_start() while calling dma_pool_alloc(), the

Re: sata_mv: problems using it as a platform_driver

2008-02-07 Thread Mark Lord
Byron Bradley wrote: I'm having problems getting the sata_mv driver working as a platform driver on the QNAP TS-209 and the Linkstation/Kurobox (both are Marvell Orion 88f5182 based devices). First of all it would oops in mv_port_start() while calling dma_pool_alloc(), the patch to fix this is

Re: sata_mv: problems using it as a platform_driver

2008-02-07 Thread Mark Lord
Byron Bradley wrote: On Fri, 8 Feb 2008, Byron Bradley wrote: I'm having problems getting the sata_mv driver working as a platform driver on the QNAP TS-209 and the Linkstation/Kurobox (both are Marvell Orion 88f5182 based devices). First of all it would oops in mv_port_start() while calling