https://github.com/torvalds/linux
Raw File
Tip revision: 4be3bd7849165e7efa6b0b35a23d6a3598d97465 authored by Linus Torvalds on 23 July 2009, 02:32:59 UTC
Linux 2.6.31-rc4
Tip revision: 4be3bd7
config.c
/* Configuration space parsing helpers for virtio.
 *
 * The configuration is [type][len][... len bytes ...] fields.
 *
 * Copyright 2007 Rusty Russell, IBM Corporation.
 * GPL v2 or later.
 */
#include <linux/err.h>
#include <linux/virtio.h>
#include <linux/virtio_config.h>
#include <linux/bug.h>
#include <asm/system.h>

back to top