/usr/include/ofapi/of_api.h is in libofapi-dev 0git20070620-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /***************************************************************************
* (C) Copyright 2006, 2007 Alastair Poole. <alastairpoole@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef __OF_USERSPACE__
#define __OF_USERSPACE__
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/stat.h>
char *OF_ROOT;
struct node_property_t {
uint8_t *data;
uint32_t len;
};
struct device_node {
char *name;
char *path;
char *full_path;
char *type;
struct node_property_t linux_phandle;
struct device_node *next;
void *data;
uint32_t len;
};
#include "of_standard.h"
#include "of_internals.h"
#include "of_externals.h"
#endif
|