Index: linux-2.6/drivers/usb/gadget/s3c2410_udc.c
===================================================================
--- linux-2.6.orig/drivers/usb/gadget/s3c2410_udc.c
+++ linux-2.6/drivers/usb/gadget/s3c2410_udc.c
@@ -1110,7 +1110,7 @@ static int s3c2410_udc_ep_enable(struct 
 
 	/* print some debug message */
 	tmp = desc->bEndpointAddress;
-	dprintk (DEBUG_NORMAL, "enable %s(%d) ep%x%s-blk max %02x\n",
+	dprintk (DEBUG_NORMAL, "enable %s(%d) ep%x%s max %02x\n",
 		 _ep->name,ep->num, tmp,
 		 desc->bEndpointAddress & USB_DIR_IN ? "in" : "out", max);
 
@@ -1766,26 +1766,26 @@ static struct s3c2410_udc memory = {
 	.ep[3] = {
 		.num		= 3,
 		.ep = {
-			.name		= "ep3-bulk",
+			.name		= "ep3-int",
 			.ops		= &s3c2410_ep_ops,
 			.maxpacket	= EP_FIFO_SIZE,
 		},
 		.dev		= &memory,
 		.fifo_size	= EP_FIFO_SIZE,
 		.bEndpointAddress = 3,
-		.bmAttributes	= USB_ENDPOINT_XFER_BULK,
+		.bmAttributes	= USB_ENDPOINT_XFER_INT,
 	},
 	.ep[4] = {
 		.num		= 4,
 		.ep = {
-			.name		= "ep4-bulk",
+			.name		= "ep4-int",
 			.ops		= &s3c2410_ep_ops,
 			.maxpacket	= EP_FIFO_SIZE,
 		},
 		.dev		= &memory,
 		.fifo_size	= EP_FIFO_SIZE,
 		.bEndpointAddress = 4,
-		.bmAttributes	= USB_ENDPOINT_XFER_BULK,
+		.bmAttributes	= USB_ENDPOINT_XFER_INT,
 	}
 
 };
