The patch titled USB: In init_endpoint_class, use PTR_ERR to obtain an errno value, not IS_ERR has been removed from the -mm tree. Its filename was usb-in-init_endpoint_class-use-ptr_err-to-obtain-an-errno-value-not-is_err.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: USB: In init_endpoint_class, use PTR_ERR to obtain an errno value, not IS_ERR From: Josh Triplett <josh@xxxxxxxxxx> init_endpoint_class calls class_create, and checks the result for an error with IS_ERR; however, if true, it then returns the result of IS_ERR (a boolean) rather than PTR_ERR (the actual errno). Signed-off-by: Josh Triplett <josh@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/usb/core/endpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/core/endpoint.c~usb-in-init_endpoint_class-use-ptr_err-to-obtain-an-errno-value-not-is_err drivers/usb/core/endpoint.c --- a/drivers/usb/core/endpoint.c~usb-in-init_endpoint_class-use-ptr_err-to-obtain-an-errno-value-not-is_err +++ a/drivers/usb/core/endpoint.c @@ -229,7 +229,7 @@ static int init_endpoint_class(void) kref_init(&ep_class->kref); ep_class->class = class_create(THIS_MODULE, "usb_endpoint"); if (IS_ERR(ep_class->class)) { - result = IS_ERR(ep_class->class); + result = PTR_ERR(ep_class->class); goto class_create_error; } _ Patches currently in -mm which might be from josh@xxxxxxxxxx are rcutorture-style-cleanup-avoid-=-null-in-boolean-tests.patch rcutorture-remove-redundant-assignment-to-cur_ops-in.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html