mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
9ffc93f203
Remove all #inclusions of asm/system.h preparatory to splitting and killing it. Performed with the following command: perl -p -i -e 's!^#\s*include\s*<asm/system[.]h>.*\n!!' `grep -Irl '^#\s*include\s*<asm/system[.]h>' *` Signed-off-by: David Howells <dhowells@redhat.com>
13 lines
300 B
C
13 lines
300 B
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>
|
|
|