remoteproc/davinci: drop needless devm_clk_put

The comment above disable_irq says that it is needed to ensure that the
"devm subsystem might end up releasing things before freeing the irq,
thus allowing an interrupt to sneak in while the device is being
removed." disable_irq is enough for this purpose and there is no need to
manually free the reference to the clock.

Cc: Robert Tivy <rtivy@ti.com>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
[moved the Cc line into the commit message]
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>

authored by Uwe Kleine-König and committed by Ohad Ben-Cohen 5d658bfd cfbf8d48

-2
-2
drivers/remoteproc/da8xx_remoteproc.c
··· 301 301 */ 302 302 disable_irq(drproc->irq); 303 303 304 - devm_clk_put(dev, drproc->dsp_clk); 305 - 306 304 rproc_del(rproc); 307 305 rproc_put(rproc); 308 306