Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a24bb40 authored by Jingoo Han's avatar Jingoo Han Committed by Felipe Balbi
Browse files

usb: gadget: fusb300_udc: remove unnecessary OOM messages



The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 8a67ab7d
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -1400,17 +1400,13 @@ static int __init fusb300_probe(struct platform_device *pdev)

	/* initialize udc */
	fusb300 = kzalloc(sizeof(struct fusb300), GFP_KERNEL);
	if (fusb300 == NULL) {
		pr_err("kzalloc error\n");
	if (fusb300 == NULL)
		goto clean_up;
	}

	for (i = 0; i < FUSB300_MAX_NUM_EP; i++) {
		_ep[i] = kzalloc(sizeof(struct fusb300_ep), GFP_KERNEL);
		if (_ep[i] == NULL) {
			pr_err("_ep kzalloc error\n");
		if (_ep[i] == NULL)
			goto clean_up;
		}
		fusb300->ep[i] = _ep[i];
	}