]> git.ozlabs.org Git - yaboot.git/blob - include/errors.h
Fix for not all device trees having k2-sata@N/compatible (from gentoo)
[yaboot.git] / include / errors.h
1 /*
2  *  errors.h - Definitions of error numbers returned by filesystems
3  *
4  *  Copyright (C) 2001 Ethan Benson
5  *
6  *  Copyright (C) 1999 Benjamin Herrenschmidt
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 /* Simple error codes */
24 #define FILE_ERR_OK             0
25 #define FILE_ERR_EOF            -1
26 #define FILE_ERR_NOTFOUND       -2
27 #define FILE_CANT_SEEK          -3
28 #define FILE_IOERR              -4
29 #define FILE_BAD_PATH           -5
30 #define FILE_ERR_BAD_TYPE       -6
31 #define FILE_ERR_NOTDIR         -7
32 #define FILE_ERR_BAD_FSYS       -8
33 #define FILE_ERR_SYMLINK_LOOP   -9
34 #define FILE_ERR_LENGTH         -10
35 #define FILE_ERR_FSBUSY         -11
36 #define FILE_ERR_BADDEV         -12
37
38 /* Device kind */
39 #define FILE_DEVICE_BLOCK       1
40 #define FILE_DEVICE_NET         2