pcmcia: deprecate CS_NO_MORE_ITEMS
CS_NO_MORE_ITEMS is returned by the CIS tuple reading and parsing code if the end of a tuple chain is reached. As at least one PCMCIA driver relies on matching this return value, replace it with -ENOSPC which is now uniquely used for this purpose within the in-kernel pcmcia subsystem. CC: Russell King <rmk+kernel@arm.linux.org.uk> CC: linux-serial@vger.kernel.org CC: Michael Buesch <mb@bu3sch.de> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
@@ -315,7 +315,7 @@ typedef struct error_info_t {
|
||||
#define CS_BAD_ARGS 0x1c
|
||||
#define CS_CONFIGURATION_LOCKED -EACCES
|
||||
#define CS_IN_USE -EBUSY
|
||||
#define CS_NO_MORE_ITEMS 0x1f
|
||||
#define CS_NO_MORE_ITEMS -ENOSPC
|
||||
#define CS_OUT_OF_RESOURCE -ENOMEM
|
||||
#define CS_BAD_HANDLE -EINVAL
|
||||
|
||||
|
Reference in New Issue
Block a user