git: 9front

Download patch

ref: cca71490e16d607fea01fc2b272c7c69e0285f2c
parent: e9cbce8c9fc55854bb78febcc0f86795b65c8a39
author: cinap_lenrek <cinap_lenrek@centraldogma>
date: Fri Nov 11 00:55:55 EST 2011

pc kernel: remove i8253link

--- a/sys/src/9/pc/fns.h
+++ b/sys/src/9/pc/fns.h
@@ -52,7 +52,6 @@
 void	i8250setmouseputc(char*, int (*)(Queue*, int));
 void	i8253enable(void);
 void	i8253init(void);
-void	i8253link(void);
 uvlong	i8253read(uvlong*);
 void	i8253timerset(uvlong);
 int	i8259disable(int);
--- a/sys/src/9/pc/i8253.c
+++ b/sys/src/9/pc/i8253.c
@@ -236,11 +236,6 @@
 	intrenable(IrqCLOCK, i8253clock, 0, BUSUNKNOWN, "clock");
 }
 
-void
-i8253link(void)
-{
-}
-
 /*
  *  return the total ticks of counter 2.  We shift by
  *  8 to give timesync more wriggle room for interpretation
--- a/sys/src/9/pc/main.c
+++ b/sys/src/9/pc/main.c
@@ -119,7 +119,6 @@
 	conf.monitor = 1;
 	chandevreset();
 	pageinit();
-	i8253link();
 	swapinit();
 	userinit();
 	active.thunderbirdsarego = 1;
--