On 12/15/14, 12:22 AM, Ley Foon Tan wrote: > On Fri, Dec 12, 2014 at 10:38 PM, Dinh Nguyen <dinh.linux@xxxxxxxxx> wrote: > >>> + >>> +#include <linux/kernel.h> >>> +#include <linux/module.h> >>> +#include <linux/device.h> >>> +#include <linux/platform_device.h> >>> +#include <linux/interrupt.h> >>> +#include <linux/io.h> >>> +#include <linux/of.h> >>> +#include <linux/mailbox_controller.h> >> >> Alphabetize the headers. > Okay. > > >>> +static int altera_mbox_startup_sender(struct mbox_chan *chan) >>> +{ >>> + int ret; >>> + struct altera_mbox *mbox = to_altera_mbox(chan); >>> + >>> + if (mbox->intr_mode) { >>> + ret = request_irq(mbox->irq, altera_mbox_tx_interrupt, 0, >> >> Use devm_request_irq, since you didn't have and don't need use free_irq >> in the shutdown function. > We want to free_irq when it shutdown. That means nobody requests for > that mailbox (or channel) and request_irq() again if someone requests > for a mailbox. > But you didn't have any free_irq in the shutdown function. Use devm_request_irq here, so you don't have to add them. Dinh -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html