https://github.com/torvalds/linux
Revision eeca9a671aaa6a77eaed725e842d53c5ce51940b authored by Michael S. Tsirkin on 05 April 2016, 08:26:44 UTC, committed by Michael S. Tsirkin on 07 April 2016, 12:16:40 UTC
Gabriel merged support for QEMU FW CFG interface, but there's apparently
no official maintainer. It's also possible that this will grow more
interfaces in future.  I'll happily co-maintain it and handle pull
requests together with the rest of the PV stuff I maintain.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Gabriel Somlo <somlo@cmu.edu>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Gabriel Somlo <somlo@cmu.edu>
1 parent def7ac8
Raw File
Tip revision: eeca9a671aaa6a77eaed725e842d53c5ce51940b authored by Michael S. Tsirkin on 05 April 2016, 08:26:44 UTC
MAINTAINERS: add entry for QEMU
Tip revision: eeca9a6
bcd.c
#include <linux/bcd.h>
#include <linux/export.h>

unsigned _bcd2bin(unsigned char val)
{
	return (val & 0x0f) + (val >> 4) * 10;
}
EXPORT_SYMBOL(_bcd2bin);

unsigned char _bin2bcd(unsigned val)
{
	return ((val / 10) << 4) + val % 10;
}
EXPORT_SYMBOL(_bin2bcd);
back to top