char *cmdline;
        int ret = 0;
        int n = 0, entries = 0, modct = 0;
-       int verbose_bytes = 0;
 
        if (&__start___dyndbg == &__stop___dyndbg) {
                if (IS_ENABLED(CONFIG_DYNAMIC_DEBUG)) {
        iter_start = iter;
        for (; iter < __stop___dyndbg; iter++) {
                entries++;
-               verbose_bytes += strlen(iter->modname) + strlen(iter->function)
-                       + strlen(iter->filename) + strlen(iter->format);
-
                if (strcmp(modname, iter->modname)) {
                        modct++;
                        ret = ddebug_add_module(iter_start, n, modname);
                goto out_err;
 
        ddebug_init_success = 1;
-       vpr_info("%d modules, %d entries and %d bytes in ddebug tables, %d bytes in (readonly) verbose section\n",
+       vpr_info("%d modules, %d entries and %d bytes in ddebug tables, %d bytes in __dyndbg section\n",
                 modct, entries, (int)(modct * sizeof(struct ddebug_table)),
-                verbose_bytes + (int)(__stop___dyndbg - __start___dyndbg));
+                (int)(entries * sizeof(struct _ddebug)));
 
        /* apply ddebug_query boot param, dont unload tables on err */
        if (ddebug_setup_string[0] != '\0') {