From mboxrd@z Thu Jan 1 00:00:00 1970 From: "G, Manjunath Kondaiah" Subject: [PATCH 1/5] drivercore: add new error value for deferred probe Date: Fri, 07 Oct 2011 10:05:23 +0500 Message-ID: <1317962127-29003-2-git-send-email-manjugk@ti.com> References: <1317962127-29003-1-git-send-email-manjugk@ti.com> Return-path: Sender: linux-omap-owner@vger.kernel.org To: linux-arm-kernel@lists.infradead.org Cc: linux-omap@vger.kernel.org, linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, Grant Likely , Greg Kroah-Hartman , Dilan Lee , Mark Brown , Manjunath GKondaiah , Arnd Bergmann List-Id: linux-mmc@vger.kernel.org Add new error value so that drivers can request deferred probe from drivercore. Signed-off-by: G, Manjunath Kondaiah Reported-by: Grant Likely --- Cc: linux-omap@vger.kernel.org Cc: linux-mmc@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: Grant Likely Cc: Greg Kroah-Hartman Cc: Dilan Lee Cc: Mark Brown Cc: Manjunath GKondaiah Cc: Arnd Bergmann include/linux/errno.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/errno.h b/include/linux/errno.h index 4668583..83d8fcf 100644 --- a/include/linux/errno.h +++ b/include/linux/errno.h @@ -16,6 +16,7 @@ #define ERESTARTNOHAND 514 /* restart if no handler.. */ #define ENOIOCTLCMD 515 /* No ioctl command */ #define ERESTART_RESTARTBLOCK 516 /* restart by calling sys_restart_syscall */ +#define EPROBE_DEFER 517 /* restart probe again after some time */ /* Defined for the NFSv3 protocol */ #define EBADHANDLE 521 /* Illegal NFS file handle */ -- 1.7.4.1