On Mon, Nov 1, 2010 at 8:41 PM, Tracey Dent <tdent48227@xxxxxxxxx> wrote: > Adding files to yaffs2 directory. > > Signed-off-by: Tracey Dent <tdent48227@xxxxxxxxx> > --- > drivers/staging/yaffs2/yportenv.h | 333 +++++++++++++++++++++++++++++++++++++ > 1 files changed, 333 insertions(+), 0 deletions(-) > create mode 100644 drivers/staging/yaffs2/yportenv.h > > diff --git a/drivers/staging/yaffs2/yportenv.h b/drivers/staging/yaffs2/yportenv.h > new file mode 100644 > index 0000000..2f9063b > --- /dev/null > +++ b/drivers/staging/yaffs2/yportenv.h > +#define YCHAR char > +#define YUCHAR unsigned char > +#define _Y(x) x > +#define yaffs_strcat(a, b) strcat(a, b) > +#define yaffs_strcpy(a, b) strcpy(a, b) > +#define yaffs_strncpy(a, b, c) strncpy(a, b, c) > +#define yaffs_strncmp(a, b, c) strncmp(a, b, c) > +#define yaffs_strnlen(s,m) strnlen(s,m) > +#define yaffs_sprintf sprintf > +#define yaffs_toupper(a) toupper(a) > + > +#define Y_INLINE __inline__ > + > +#define YAFFS_LOSTNFOUND_NAME "lost+found" > +#define YAFFS_LOSTNFOUND_PREFIX "obj" > + > +/* #define YPRINTF(x) printk x */ > +#define YMALLOC(x) kmalloc(x, GFP_NOFS) > +#define YFREE(x) kfree(x) > +#define YMALLOC_ALT(x) vmalloc(x) > +#define YFREE_ALT(x) vfree(x) > +#define YMALLOC_DMA(x) YMALLOC(x) > + > +#define YYIELD() schedule() > +#define Y_DUMP_STACK() dump_stack() [snip] Pretty much all wrappers in this header file want to be killed. -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html