Add bogus Linux platform_device stub.

This commit is contained in:
riastradh 2014-08-06 13:52:22 +00:00
parent 7ab666e207
commit 9c9effa110
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: platform_device.h,v 1.2 2014/03/18 18:20:43 riastradh Exp $ */
/* $NetBSD: platform_device.h,v 1.3 2014/08/06 13:52:22 riastradh Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@ -32,4 +32,10 @@
#ifndef _LINUX_PLATFORM_DEVICE_H_
#define _LINUX_PLATFORM_DEVICE_H_
#include <sys/device.h>
struct platform_device {
struct device dev; /* XXX DON'T BELIEVE ME */
};
#endif /* _LINUX_PLATFORM_DEVICE_H_ */