Add KEY_MICMUTE and enable it on Lenovo X220
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / lib / check_signature.c
blobfd6af199247bfd97daa792f775aa26b532852c6b
1 #include <linux/io.h>
2 #include <linux/module.h>
4 /**
5 * check_signature - find BIOS signatures
6 * @io_addr: mmio address to check
7 * @signature: signature block
8 * @length: length of signature
10 * Perform a signature comparison with the mmio address io_addr. This
11 * address should have been obtained by ioremap.
12 * Returns 1 on a match.
15 int check_signature(const volatile void __iomem *io_addr,
16 const unsigned char *signature, int length)
18 while (length--) {
19 if (readb(io_addr) != *signature)
20 return 0;
21 io_addr++;
22 signature++;
24 return 1;
26 EXPORT_SYMBOL(check_signature);