aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/dcons
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2009-04-06 13:09:02 +0000
committerEd Schouten <ed@FreeBSD.org>2009-04-06 13:09:02 +0000
commit2dae467d6197ef1efef4f348aa042475aa78dbcf (patch)
tree314fcc241ecd75424a9e5c361ed64c630e09e920 /sys/dev/dcons
parent54a6481fd198399eeab62a8b9dee4c289c4d08ca (diff)
downloadsrc-2dae467d6197ef1efef4f348aa042475aa78dbcf.tar.gz
src-2dae467d6197ef1efef4f348aa042475aa78dbcf.zip
Reduce the dcons polling frequency to 25 Hz.
It makes little sense to use 100 Hz polling in dcons. We cannot live without polling, because that's just how dcons works. It polls the buffer filled by the firewire hardware. 25 Hz is probably enough for most use cases. Discussed with: rwatson Tested by: kan
Notes
Notes: svn path=/head/; revision=190771
Diffstat (limited to 'sys/dev/dcons')
-rw-r--r--sys/dev/dcons/dcons_os.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dcons/dcons_os.c b/sys/dev/dcons/dcons_os.c
index 5bf40f916758..49967eb5018a 100644
--- a/sys/dev/dcons/dcons_os.c
+++ b/sys/dev/dcons/dcons_os.c
@@ -72,7 +72,7 @@
#ifndef DCONS_POLL_HZ
-#define DCONS_POLL_HZ 100
+#define DCONS_POLL_HZ 25
#endif
#ifndef DCONS_BUF_SIZE