diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2009-05-05 15:34:34 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-05-08 15:45:10 -0700 |
commit | 80c2d4701095c98d01ae4cda681bd231625e4ac7 (patch) | |
tree | e7063e2166477aeed920c01dd00c5b29465b3f9d | |
parent | 334ed22054b2ec8477e4409e214fc139cf937ef6 (diff) |
cs5536: define dma_sff_read_status() method
commit 15da90b516e9da92cc1d90001e640fd6707d0e27 upstream.
The driver somehow got merged with the initializer for the dma_sff_read_status()
method missing which caused kernel panic on bootup.
This should fix the kernel.org bug #13026...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Reported-by: Arnd Hannemann <hannemann@nets.rwth-aachen.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/ide/cs5536.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ide/cs5536.c b/drivers/ide/cs5536.c index 7a62db719a46..dc89bc25e7e2 100644 --- a/drivers/ide/cs5536.c +++ b/drivers/ide/cs5536.c @@ -237,6 +237,7 @@ static const struct ide_dma_ops cs5536_dma_ops = { .dma_test_irq = ide_dma_test_irq, .dma_lost_irq = ide_dma_lost_irq, .dma_timeout = ide_dma_timeout, + .dma_sff_read_status = ide_dma_sff_read_status, }; static const struct ide_port_info cs5536_info = { |