From: Paul Bolle Date: Wed, 16 Feb 2011 09:34:24 +0000 (+0100) Subject: COM32R documentation: fix typo 'pm_cs' X-Git-Tag: syslinux-4.04-pre11^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5dab4613f0e1442962d0b7f1740c01fbeee21491;p=platform%2Fupstream%2Fsyslinux.git COM32R documentation: fix typo 'pm_cs' Signed-off-by: Paul Bolle Signed-off-by: H. Peter Anvin --- diff --git a/doc/comboot.txt b/doc/comboot.txt index 4b4b880..04d5deb 100644 --- a/doc/comboot.txt +++ b/doc/comboot.txt @@ -986,27 +986,27 @@ AX=0024h [3.80] Cleanup, shuffle and boot, raw version ++++ 32-BIT ONLY API CALLS ++++ -void *pm_cs->lmalloc(size_t bytes) +void *cs_pm->lmalloc(size_t bytes) Allocate a buffer in low memory (below 1 MB). -void pm_cs->lfree(void *ptr) +void cs_pm->lfree(void *ptr) - Free a buffer allocated with pm_cs->lmalloc(). + Free a buffer allocated with cs_pm->lmalloc(). -DIR *pm_cs->opendir(const char *pathname) +DIR *cs_pm->opendir(const char *pathname) Open a directory. -struct dirent *pm_cs->readdir(DIR *dir) +struct dirent *cs_pm->readdir(DIR *dir) Read an entry from a directory. The entry is returned in a static buffer. -int pm_cs->closedir(DIR *dir) +int cs_pm->closedir(DIR *dir) Close a directory.