Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
083b4c0e
Commit
083b4c0e
authored
Feb 21, 2002
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
From Jay Estabrook <Jay.Estabrook@compaq.com>:
Make PS/2 mouse work again on JENSEN.
parent
d58c2208
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
include/asm-alpha/jensen.h
include/asm-alpha/jensen.h
+0
-3
include/asm-alpha/keyboard.h
include/asm-alpha/keyboard.h
+2
-1
No files found.
include/asm-alpha/jensen.h
View file @
083b4c0e
...
...
@@ -7,9 +7,6 @@
* Defines for the AlphaPC EISA IO and memory address space.
*/
/* The Jensen is strange */
#define AUX_IRQ (9)
/*
* NOTE! The memory operations do not set any memory barriers, as it's
* not needed for cases like a frame buffer that is essentially memory-like.
...
...
include/asm-alpha/keyboard.h
View file @
083b4c0e
...
...
@@ -60,7 +60,8 @@ extern unsigned char pckbd_sysrq_xlate[128];
* Machine specific bits for the PS/2 driver
*/
#define AUX_IRQ 12
/* Jensen puts this at 9, everyone else at the standard 12. */
#define AUX_IRQ (RTC_PORT(0) == 0x170 ? 9 : 12)
#define aux_request_irq(hand, dev_id) \
request_irq(AUX_IRQ, hand, SA_SHIRQ, "PS/2 Mouse", dev_id)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment