| * YAFFS: Yet another FFS. A NAND-flash specific file system. |
| * Copyright (C) 2002-2011 Aleph One Ltd. |
| * for Toby Churchill Ltd and Brightstar Engineering |
| * Created by Timothy Manning <timothy@yaffs.net> |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 as |
| * published by the Free Software Foundation. |
| static const struct error_entry error_list[] = { |
| { ENOTEMPTY, "ENOTEMPTY"}, |
| { ENAMETOOLONG, "ENAMETOOLONG"}, |
| const char *yaffs_error_to_str(int err) |
| const struct error_entry *e = error_list; |
| while (e->code && e->text) { |
| return "Unknown error code"; |