staging: kpc2000: remove unnecessary debug prints in cell_probe.c
authorSimon Sandström <simon@nikanor.nu>
Mon, 10 Jun 2019 08:44:28 +0000 (10:44 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 Jun 2019 15:53:09 +0000 (17:53 +0200)
Debug prints that are used only to inform about function entry or exit
can be removed as ftrace can be used to get this information.

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/kpc2000/kpc2000/cell_probe.c

index f731a97..138d16b 100644 (file)
@@ -344,8 +344,6 @@ static int  create_dma_engine_core(struct kp2000_device *pcard, size_t engine_re
        struct mfd_cell  cell = { .id = engine_num };
        struct resource  resources[2];
 
-       dev_dbg(&pcard->pdev->dev, "create_dma_core(pcard = [%p], engine_regs_offset = %zx, engine_num = %d)\n", pcard, engine_regs_offset, engine_num);
-
        cell.platform_data = NULL;
        cell.pdata_size = 0;
        cell.name = KP_DRIVER_NAME_DMA_CONTROLLER;
@@ -414,9 +412,6 @@ int  kp2000_probe_cores(struct kp2000_device *pcard)
        unsigned int highest_core_id = 0;
        struct core_table_entry cte;
 
-       dev_dbg(&pcard->pdev->dev, "%s(pcard = %p / %d)\n", __func__, pcard,
-               pcard->card_num);
-
        err = kp2000_setup_dma_controller(pcard);
        if (err)
                return err;