patch-2.4.22 linux-2.4.22/drivers/char/au1000_ts.c
Next file: linux-2.4.22/drivers/char/au1000_usbraw.c
Previous file: linux-2.4.22/drivers/char/au1000_gpio.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
2003-08-25 04:44:41.000000000 -0700
- Orig file:
linux-2.4.21/drivers/char/au1000_ts.c
- Orig date:
2002-08-02 17:39:43.000000000 -0700
diff -urN linux-2.4.21/drivers/char/au1000_ts.c linux-2.4.22/drivers/char/au1000_ts.c
@@ -261,7 +261,7 @@
calc_clkdiv(int baud)
{
u32 sys_busclk =
- (get_au1000_speed() / (int)(inl(PM_POWERUP_CONTROL)&0x03) + 2);
+ (get_au1x00_speed() / (int)(inl(SYS_POWERCTRL)&0x03) + 2);
return (sys_busclk / (2 * baud)) - 1;
}
@@ -269,7 +269,7 @@
calc_baudrate(u32 clkdiv)
{
u32 sys_busclk =
- (get_au1000_speed() / (int)(inl(PM_POWERUP_CONTROL)&0x03) + 2);
+ (get_au1x00_speed() / (int)(inl(SYS_POWERCTRL)&0x03) + 2);
return sys_busclk / (2 * (clkdiv + 1));
}
@@ -642,7 +642,7 @@
ts->y_plate_ohms = DEFAULT_Y_PLATE_OHMS;
// set GPIO to SSI0 function
- outl(inl(PIN_FUNCTION) & ~1, PIN_FUNCTION);
+ outl(inl(SYS_PINFUNC) & ~1, SYS_PINFUNC);
// enable SSI0 clock and bring SSI0 out of reset
outl(0, SSI0_CONTROL);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)