From: Alex Williamson <alex.williamson@hp.com>
To: akpm@osdl.org
Cc: "Robert W. Picco" <bob.picco@hp.com>,
venkatesh.pallipadi@intel.com, linux-kernel@vger.kernel.org
Subject: [PATCH] fix hpet drift and url
Date: Tue, 30 Aug 2005 11:40:01 -0600 [thread overview]
Message-ID: <1125423601.6792.16.camel@tdi> (raw)
The HPET driver is using a parts per second drift factor instead of
the standard parts per million drift the time interpolator code expects.
This patch fixes that problem and updates the URL for the HPET spec.
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
diff -r 38ae29531c91 drivers/char/hpet.c
--- a/drivers/char/hpet.c Tue Aug 30 05:51:28 2005
+++ b/drivers/char/hpet.c Tue Aug 30 11:21:46 2005
@@ -44,7 +44,7 @@
/*
* The High Precision Event Timer driver.
* This driver is closely modelled after the rtc.c driver.
- * http://www.intel.com/labs/platcomp/hpet/hpetspec.htm
+ * http://www.intel.com/hardwaredesign/hpetspec.htm
*/
#define HPET_USER_FREQ (64)
#define HPET_DRIFT (500)
@@ -712,7 +712,7 @@
ti->shift = 10;
ti->addr = &hpetp->hp_hpet->hpet_mc;
ti->frequency = hpet_time_div(hpets->hp_period);
- ti->drift = ti->frequency * HPET_DRIFT / 1000000;
+ ti->drift = HPET_DRIFT;
ti->mask = -1;
hpetp->hp_interpolator = ti;
next reply other threads:[~2005-08-30 17:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-30 17:40 Alex Williamson [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-08-30 18:27 [PATCH] fix hpet drift and url Pallipadi, Venkatesh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1125423601.6792.16.camel@tdi \
--to=alex.williamson@hp.com \
--cc=akpm@osdl.org \
--cc=bob.picco@hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=venkatesh.pallipadi@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox