Staging
v0.8.1
https://github.com/torvalds/linux
Revision dd668d150cad39d3af676519c81c2757fb7787da authored by Alan Cox on 21 May 2007, 14:00:53 UTC, committed by Jeff Garzik on 25 May 2007, 00:34:48 UTC
- Rename sis_port_base to sis_old_port_base() so nobody uses it for new
generation controllers in error.
- Use byte size operations where it is cleaner for mode setup
- Fix a couple of masking errors on certai chip revs when setting speeds

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
1 parent 824cf33
Raw File
Tip revision: dd668d150cad39d3af676519c81c2757fb7787da authored by Alan Cox on 21 May 2007, 14:00:53 UTC
pata_sis: Fix and clean up some timing setups
Tip revision: dd668d1
parport.h
/*
 * parport.h: ia32-specific parport initialisation
 *
 * Copyright (C) 1999, 2000  Tim Waugh <tim@cyberelk.demon.co.uk>
 *
 * This file should only be included by drivers/parport/parport_pc.c.
 */

#ifndef _ASM_X8664_PARPORT_H
#define _ASM_X8664_PARPORT_H 1

static int __devinit parport_pc_find_isa_ports (int autoirq, int autodma);
static int __devinit parport_pc_find_nonpci_ports (int autoirq, int autodma)
{
	return parport_pc_find_isa_ports (autoirq, autodma);
}

#endif 
back to top