|
Revision 5163, 1.1 KB
(checked in by khali, 5 years ago)
|
|
Patch from Aurelien Jarno:
I have just noticed that the FSF address is the old one in all files
except COPYING. Please find a patch below to fix that.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | superio: Handle special I/O operations needed by most Super-I/O chips |
|---|
| 3 | |
|---|
| 4 | Copyright (C) 2005 Jean Delvare <khali@linux-fr.org> |
|---|
| 5 | |
|---|
| 6 | This program is free software; you can redistribute it and/or modify |
|---|
| 7 | it under the terms of the GNU General Public License as published by |
|---|
| 8 | the Free Software Foundation; either version 2 of the License, or |
|---|
| 9 | (at your option) any later version. |
|---|
| 10 | |
|---|
| 11 | This program is distributed in the hope that it will be useful, |
|---|
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 | GNU General Public License for more details. |
|---|
| 15 | |
|---|
| 16 | You should have received a copy of the GNU General Public License |
|---|
| 17 | along with this program; if not, write to the Free Software |
|---|
| 18 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
|---|
| 19 | MA 02110-1301 USA. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | #ifndef _SUPERIO_H |
|---|
| 23 | #define _SUPERIO_H |
|---|
| 24 | |
|---|
| 25 | #define SUPERIO_MAX_KEY 8 |
|---|
| 26 | |
|---|
| 27 | int superio_parse_key(unsigned char *key, const char *s); |
|---|
| 28 | void superio_write_key(int addrreg, unsigned char *key); |
|---|
| 29 | void superio_reset(int addrreg, int datareg); |
|---|
| 30 | |
|---|
| 31 | #endif /* _SUPERIO_H */ |
|---|