Subject: est.c patch for dothan 753 (1.2GHz)
To: None <port-i386@netbsd.org>
From: Bruno D'Arcangeli <bruno.darcangeli@armonix.org>
List: port-i386
Date: 04/05/2005 14:58:27
--jRHKVT23PllUwdXP
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
Hi all,
I've made a patch for est.c which add support for the Intel Pentium M 753
processor.
As a novice programmer, i'm open to all remark.
Bruno.
--
Bruno D'Arcangeli <bruno.darcangeli@armonix.org>
200 trains de camion/jour au coeur des Pyrénées ? <http://www.actival.org>
Vous utilisez Windows ? Dommage car vous passez à côté de RISC OS!
<http://www.armonix.org/riscos/>
--jRHKVT23PllUwdXP
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="est.patch"
--- est.c.orig 2005-02-25 04:04:08.000000000 +0100
+++ est.c 2005-04-05 14:46:14.000000000 +0200
@@ -266,6 +266,16 @@
{ 600, 812 }
};
+/* Intel Pentium M processor 753 1.2 GHz */
+static const struct fq_info pentium_m_n753[] = {
+ { 1200, 940 },
+ { 1100, 924 },
+ { 1000, 908 },
+ { 900, 876 },
+ { 800, 860 },
+ { 600, 812 }
+};
+
/* Intel Pentium M processor 738 1.4 GHz */
static const struct fq_info pentium_m_n738[] = {
{ 1400, 1116 },
@@ -306,6 +316,7 @@
ENTRY("2.10", pentium_m_n765),
ENTRY("1.00", pentium_m_n723),
ENTRY("1.10", pentium_m_n733),
+ ENTRY("1.20", pentium_m_n753),
ENTRY("1.40", pentium_m_n738),
};
#undef ENTRY
--jRHKVT23PllUwdXP--