~ubuntu-branches/ubuntu/vivid/u-boot/vivid

« back to all changes in this revision

Viewing changes to include/exports.h

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2012-01-02 17:49:39 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20120102174939-iddq37p3372x10yp
Tags: 2011.12-1
* New upstream version.
  - Drop build-timestamp_autogenerated.h-without-config.patch (merged).
  - Drop ublimage-NAND-block-size-isn-t-set-at-build-time.patch (merged).
  - Update kerma-sheevaplug-mvsdio.diff
  - Update mipsel-native-endianness.diff
  - Drop dreamplug-v8.patch (merged).

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#ifndef __ASSEMBLY__
5
5
 
6
 
#include <common.h>
7
 
 
8
6
/* These are declarations of exported functions available in C code */
9
7
unsigned long get_version(void);
10
8
int  getc(void);
12
10
void putc(const char);
13
11
void puts(const char*);
14
12
int printf(const char* fmt, ...);
15
 
void install_hdlr(int, interrupt_handler_t*, void*);
 
13
void install_hdlr(int, void (*interrupt_handler_t)(void *), void*);
16
14
void free_hdlr(int);
17
15
void *malloc(size_t);
18
16
void free(void*);
30
28
int i2c_write (uchar, uint, int , uchar* , int);
31
29
int i2c_read (uchar, uint, int , uchar* , int);
32
30
#endif
33
 
#include <spi.h>
34
31
 
35
32
void app_startup(char * const *);
36
33