Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
lib
check_signature.c
Go to the documentation of this file.
1
#include <
linux/io.h
>
2
#include <linux/export.h>
3
15
int
check_signature
(
const
volatile
void
__iomem
*
io_addr
,
16
const
unsigned
char
*
signature
,
int
length
)
17
{
18
while
(length--) {
19
if
(
readb
(io_addr) != *signature)
20
return
0;
21
io_addr++;
22
signature++;
23
}
24
return
1;
25
}
26
EXPORT_SYMBOL
(
check_signature
);
Generated on Thu Jan 10 2013 14:55:24 for Linux Kernel by
1.8.2