Added a forward reference to struct inode to avoid warning about mismatching types in assignemnt
This commit is contained in:
parent
9e2702fa52
commit
410fcaa0a1
2
TODO
2
TODO
@ -887,7 +887,7 @@ o Network (net/, drivers/net)
|
|||||||
DMxxx NIC NO
|
DMxxx NIC NO
|
||||||
PIC32 NO
|
PIC32 NO
|
||||||
RGMP NO
|
RGMP NO
|
||||||
SAM3/4 NO
|
SAM3/4 YES <<
|
||||||
SAMA5D3 NO
|
SAMA5D3 NO
|
||||||
SAMA5D4 YES <<
|
SAMA5D4 YES <<
|
||||||
SIM N/A << Doesn't support interrupts
|
SIM N/A << Doesn't support interrupts
|
||||||
|
@ -135,7 +135,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct file; /* Forward reference */
|
struct file; /* Forward reference */
|
||||||
struct inode; /* Forware reference */
|
struct inode; /* Forward reference */
|
||||||
|
|
||||||
FAR struct pipe_dev_s *pipecommon_allocdev(void);
|
FAR struct pipe_dev_s *pipecommon_allocdev(void);
|
||||||
void pipecommon_freedev(FAR struct pipe_dev_s *dev);
|
void pipecommon_freedev(FAR struct pipe_dev_s *dev);
|
||||||
|
@ -73,8 +73,10 @@
|
|||||||
* system. It is used to call back to perform device specific operations.
|
* system. It is used to call back to perform device specific operations.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct file;
|
struct file; /* Forward reference */
|
||||||
struct pollfd;
|
struct pollfd; /* Forward reference */
|
||||||
|
struct inode; /* Forward reference */
|
||||||
|
|
||||||
struct file_operations
|
struct file_operations
|
||||||
{
|
{
|
||||||
/* The device driver open method differs from the mountpoint open method */
|
/* The device driver open method differs from the mountpoint open method */
|
||||||
|
Loading…
Reference in New Issue
Block a user