https://github.com/torvalds/linux
Raw File
Tip revision: ddf28352b80c86754a6424e3a61e8bdf9213b3c7 authored by Linus Torvalds on 04 September 2011, 22:45:10 UTC
Linux 3.1-rc5
Tip revision: ddf2835
atari_stram.h
#ifndef _M68K_ATARI_STRAM_H
#define _M68K_ATARI_STRAM_H

/*
 * Functions for Atari ST-RAM management
 */

/* public interface */
void *atari_stram_alloc(unsigned long size, const char *owner);
void atari_stram_free(void *);

/* functions called internally by other parts of the kernel */
void atari_stram_init(void);
void atari_stram_reserve_pages(void *start_mem);

#endif /*_M68K_ATARI_STRAM_H */
back to top