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
f00beb55
Commit
f00beb55
authored
May 13, 2004
by
Max Asbock
Committed by
Greg Kroah-Hartman
May 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] add ibmasm driver warning message
[note, I changed this a bit to be nicer on the system log, greg k-h]
parent
427ac533
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
drivers/misc/Kconfig
drivers/misc/Kconfig
+7
-1
drivers/misc/ibmasm/module.c
drivers/misc/ibmasm/module.c
+7
-0
No files found.
drivers/misc/Kconfig
View file @
f00beb55
...
...
@@ -6,7 +6,7 @@ menu "Misc devices"
config IBM_ASM
tristate "Device driver for IBM RSA service processor"
depends on X86
depends on X86
&& EXPERIMENTAL
default n
---help---
This option enables device driver support for in-band access to the
...
...
@@ -20,6 +20,12 @@ config IBM_ASM
this feature serial driver support (CONFIG_SERIAL_8250) must be
enabled.
WARNING: This software may not be supported or function
correctly on your IBM server. Please consult the IBM ServerProven
website http://www.pc.ibm/ww/eserver/xseries/serverproven for
information on the specific driver level and support statement
for your IBM server.
If unsure, say N.
...
...
drivers/misc/ibmasm/module.c
View file @
f00beb55
...
...
@@ -126,6 +126,13 @@ static int __init ibmasm_init_one(struct pci_dev *pdev, const struct pci_device_
ibmasm_register_uart
(
sp
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"WARNING: This software may not be supported or function
\n
"
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"correctly on your IBM server. Please consult the IBM
\n
"
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"ServerProven website
\n
"
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"http://www.pc.ibm.com/ww/eserver/xseries/serverproven
\n
"
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"for information on the specific driver level and support
\n
"
);
dev_printk
(
KERN_DEBUG
,
&
pdev
->
dev
,
"statement for your IBM server.
\n
"
);
return
0
;
error_send_message:
...
...
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