]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
scripts: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:31 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:18 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
18 files changed:
scripts/dtc/checks.c
scripts/dtc/dtc.h
scripts/dtc/flattree.c
scripts/dtc/libfdt/fdt_ro.c
scripts/dtc/libfdt/libfdt.h
scripts/dtc/livetree.c
scripts/dtc/srcpos.c
scripts/dtc/srcpos.h
scripts/dtc/treesource.c
scripts/dtc/util.c
scripts/kconfig/gconf.c
scripts/kconfig/list.h
scripts/kconfig/lkc.h
scripts/kconfig/lxdialog/dialog.h
scripts/kconfig/lxdialog/textbox.c
scripts/kconfig/menu.c
scripts/kconfig/nconf.c
scripts/kconfig/nconf.gui.c

index c35aa6f88639e47240419de0f7dcb493cd546a9a..2feec44a0f70b735c1e84298d51cb291c32b4dd4 100644 (file)
@@ -111,7 +111,6 @@ static inline void  PRINTF(5, 6) check_msg(struct check *c, struct dt_info *dti,
                check_msg((c), dti, node, prop, __VA_ARGS__);           \
        } while (0)
 
-
 static void check_nodes_props(struct check *c, struct dt_info *dti, struct node *node)
 {
        struct node *child;
@@ -1076,7 +1075,6 @@ static void check_obsolete_chosen_interrupt_controller(struct check *c,
        if (node != dt)
                return;
 
-
        chosen = get_node_by_path(dt, "/chosen");
        if (!chosen)
                return;
index 6d667701ab6aa9027510b57eedc3f12ed5d9f8d5..39c50a2c4fc531ecd895ffc8255d1ea9250221b1 100644 (file)
@@ -65,7 +65,6 @@ extern int auto_label_aliases;        /* auto generate labels -> aliases */
 
 typedef uint32_t cell_t;
 
-
 #define streq(a, b)    (strcmp((a), (b)) == 0)
 #define strstarts(s, prefix)   (strncmp((s), (prefix), strlen(prefix)) == 0)
 #define strprefixeq(a, n, b)   (strlen(b) == (n) && (memcmp(a, b, n) == 0))
@@ -92,7 +91,6 @@ struct data {
        struct marker *markers;
 };
 
-
 #define empty_data ((struct data){ 0 /* all .members = 0 or NULL */ })
 
 #define for_each_marker(m) \
@@ -252,7 +250,6 @@ struct reserve_info *chain_reserve_entry(struct reserve_info *first,
 struct reserve_info *add_reserve_entry(struct reserve_info *list,
                                       struct reserve_info *new);
 
-
 struct dt_info {
        unsigned int dtsflags;
        struct reserve_info *reservelist;
index 8d268fb785dbdeff634e2d73341d7c8ea3beebcd..086c5abf10fbb0fc7d7eca4431e6fff0467c90aa 100644 (file)
@@ -695,7 +695,6 @@ static struct property *flat_read_property(struct inbuf *dtbuf,
        return build_property(name, val);
 }
 
-
 static struct reserve_info *flat_read_mem_reserve(struct inbuf *inb)
 {
        struct reserve_info *reservelist = NULL;
@@ -724,7 +723,6 @@ static struct reserve_info *flat_read_mem_reserve(struct inbuf *inb)
        return reservelist;
 }
 
-
 static char *nodename_from_path(const char *ppath, const char *cpath)
 {
        int plen;
@@ -806,7 +804,6 @@ static struct node *unflatten_tree(struct inbuf *dtbuf,
        return node;
 }
 
-
 struct dt_info *dt_from_blob(const char *fname)
 {
        FILE *f;
index 63eaf57f43ad40754446c9643c09524de7f5f8e0..d65656aaa8b179f775483a857450227694850563 100644 (file)
@@ -421,7 +421,6 @@ static const struct fdt_property *fdt_get_property_namelen_(const void *fdt,
        return NULL;
 }
 
-
 const struct fdt_property *fdt_get_property_namelen(const void *fdt,
                                                    int offset,
                                                    const char *name,
@@ -439,7 +438,6 @@ const struct fdt_property *fdt_get_property_namelen(const void *fdt,
                                         NULL);
 }
 
-
 const struct fdt_property *fdt_get_property(const void *fdt,
                                            int nodeoffset,
                                            const char *name, int *lenp)
index d706f85962bdbf1d9a2f38acd6e417d9c5462079..16ec53e78b8fb038221d0d86e10d6efb0ab835b3 100644 (file)
@@ -1162,7 +1162,6 @@ int fdt_address_cells(const void *fdt, int nodeoffset);
  */
 int fdt_size_cells(const void *fdt, int nodeoffset);
 
-
 /**********************************************************************/
 /* Write-in-place functions                                           */
 /**********************************************************************/
@@ -1696,7 +1695,6 @@ static inline int fdt_setprop_cell(void *fdt, int nodeoffset, const char *name,
 #define fdt_setprop_string(fdt, nodeoffset, name, str) \
        fdt_setprop((fdt), (nodeoffset), (name), (str), strlen(str)+1)
 
-
 /**
  * fdt_setprop_empty - set a property to an empty value
  * @fdt: pointer to the device tree blob
index 6e4c367f54b3a8de0289d9677519a81b63ef5aa4..ba06ef348bef97e47d43e8a4b5d125134edd6891 100644 (file)
@@ -631,7 +631,6 @@ uint32_t guess_boot_cpuid(struct node *tree)
        if (!cpus)
                return 0;
 
-
        bootcpu = cpus->children;
        if (!bootcpu)
                return 0;
index c29786114503c620b5891f1b17ad91800965a3ef..0ad89e2af60b704231358889d2785f77db5ddb82 100644 (file)
@@ -33,7 +33,6 @@ struct search_path {
 /* This is the list of directories that we search for source files */
 static struct search_path *search_path_head, **search_path_tail;
 
-
 static char *get_dirname(const char *path)
 {
        const char *slash = strrchr(path, '/');
@@ -56,7 +55,6 @@ struct srcfile_state *current_srcfile; /* = NULL */
 #define MAX_SRCFILE_DEPTH     (100)
 static int srcfile_depth; /* = 0 */
 
-
 /**
  * Try to open a file in a given directory.
  *
@@ -250,7 +248,6 @@ srcpos_string(struct srcpos *pos)
        if (pos->file && pos->file->name)
                fname = pos->file->name;
 
-
        if (pos->first_line != pos->last_line)
                xasprintf(&pos_str, "%s:%d.%d-%d.%d", fname,
                          pos->first_line, pos->first_column,
index 5db32a723e1297c91b22a73bdae2b4ceacf21e74..fcd9937a9114fcfab749ba1fff6bfda7ff39ea11 100644 (file)
@@ -95,7 +95,6 @@ struct srcpos {
                }                                                               \
        } while (0)
 
-
 /*
  * Fictional source position used for IR nodes that are
  * created without otherwise knowing a true source position.
index b36cb41902a437304051d1b8ec3d45dfc0ea000f..8c8b914698d42c1758b5ec115433a108f4bd5e50 100644 (file)
@@ -262,7 +262,6 @@ static void write_tree_source_node(FILE *f, struct node *tree, int level)
        fprintf(f, "};\n");
 }
 
-
 void dt_to_source(FILE *f, struct dt_info *dti)
 {
        struct reserve_info *re;
index 9953c32a024473c60d5b9db39b3ed6fee5ba8532..23334d39bb6eb935f88650bdb53ce1d89314eeb3 100644 (file)
@@ -325,7 +325,6 @@ int utilfdt_write_err(const char *filename, const void *blob)
        return ret < 0 ? -ret : 0;
 }
 
-
 int utilfdt_write(const char *filename, const void *blob)
 {
        int ret = utilfdt_write_err(filename, blob);
index 2ec7419301ded8a4d5193d536d338347d112dd97..aee993a778f41a438bed99b6296bd5077e9f3c87 100644 (file)
@@ -360,10 +360,8 @@ void init_right_tree(void)
        gtk_tree_selection_set_mode(sel, GTK_SELECTION_SINGLE);
 }
 
-
 /* Utility Functions */
 
-
 static void text_insert_help(struct menu *menu)
 {
        GtkTextBuffer *buffer;
@@ -388,7 +386,6 @@ static void text_insert_help(struct menu *menu)
        str_free(&help);
 }
 
-
 static void text_insert_msg(const char *title, const char *message)
 {
        GtkTextBuffer *buffer;
@@ -409,7 +406,6 @@ static void text_insert_msg(const char *title, const char *message)
                                         NULL);
 }
 
-
 /* Main Windows Callbacks */
 
 void on_save_activate(GtkMenuItem * menuitem, gpointer user_data);
@@ -457,13 +453,11 @@ gboolean on_window1_delete_event(GtkWidget * widget, GdkEvent * event,
        return FALSE;
 }
 
-
 void on_window1_destroy(GtkObject * object, gpointer user_data)
 {
        gtk_main_quit();
 }
 
-
 void
 on_window1_size_request(GtkWidget * widget,
                        GtkRequisition * requisition, gpointer user_data)
@@ -483,10 +477,8 @@ on_window1_size_request(GtkWidget * widget,
        gtk_paned_set_position(GTK_PANED(vpaned), 2 * h / 3);
 }
 
-
 /* Menu & Toolbar Callbacks */
 
-
 static void
 load_filename(GtkFileSelection * file_selector, gpointer user_data)
 {
@@ -520,14 +512,12 @@ void on_load1_activate(GtkMenuItem * menuitem, gpointer user_data)
        gtk_widget_show(fs);
 }
 
-
 void on_save_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        if (conf_write(NULL))
                text_insert_msg("Error", "Unable to save configuration !");
 }
 
-
 static void
 store_filename(GtkFileSelection * file_selector, gpointer user_data)
 {
@@ -561,14 +551,12 @@ void on_save_as1_activate(GtkMenuItem * menuitem, gpointer user_data)
        gtk_widget_show(fs);
 }
 
-
 void on_quit1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        if (!on_window1_delete_event(NULL, NULL, NULL))
                gtk_widget_destroy(GTK_WIDGET(main_wnd));
 }
 
-
 void on_show_name1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkTreeViewColumn *col;
@@ -579,7 +567,6 @@ void on_show_name1_activate(GtkMenuItem * menuitem, gpointer user_data)
                gtk_tree_view_column_set_visible(col, show_name);
 }
 
-
 void on_show_range1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkTreeViewColumn *col;
@@ -597,7 +584,6 @@ void on_show_range1_activate(GtkMenuItem * menuitem, gpointer user_data)
 
 }
 
-
 void on_show_data1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkTreeViewColumn *col;
@@ -608,7 +594,6 @@ void on_show_data1_activate(GtkMenuItem * menuitem, gpointer user_data)
                gtk_tree_view_column_set_visible(col, show_value);
 }
 
-
 void
 on_set_option_mode1_activate(GtkMenuItem *menuitem, gpointer user_data)
 {
@@ -617,7 +602,6 @@ on_set_option_mode1_activate(GtkMenuItem *menuitem, gpointer user_data)
        display_tree(&rootmenu);        /* instead of update_tree to speed-up */
 }
 
-
 void
 on_set_option_mode2_activate(GtkMenuItem *menuitem, gpointer user_data)
 {
@@ -626,7 +610,6 @@ on_set_option_mode2_activate(GtkMenuItem *menuitem, gpointer user_data)
        display_tree(&rootmenu);        /* instead of update_tree to speed-up */
 }
 
-
 void
 on_set_option_mode3_activate(GtkMenuItem *menuitem, gpointer user_data)
 {
@@ -635,7 +618,6 @@ on_set_option_mode3_activate(GtkMenuItem *menuitem, gpointer user_data)
        display_tree(&rootmenu);        /* instead of update_tree to speed-up */
 }
 
-
 void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkWidget *dialog;
@@ -666,7 +648,6 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)
        gtk_widget_show_all(dialog);
 }
 
-
 void on_about1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkWidget *dialog;
@@ -684,7 +665,6 @@ void on_about1_activate(GtkMenuItem * menuitem, gpointer user_data)
        gtk_widget_show_all(dialog);
 }
 
-
 void on_license1_activate(GtkMenuItem * menuitem, gpointer user_data)
 {
        GtkWidget *dialog;
@@ -703,7 +683,6 @@ void on_license1_activate(GtkMenuItem * menuitem, gpointer user_data)
        gtk_widget_show_all(dialog);
 }
 
-
 void on_back_clicked(GtkButton * button, gpointer user_data)
 {
        enum prop_type ptype;
@@ -718,13 +697,11 @@ void on_back_clicked(GtkButton * button, gpointer user_data)
                gtk_widget_set_sensitive(back_btn, FALSE);
 }
 
-
 void on_load_clicked(GtkButton * button, gpointer user_data)
 {
        on_load1_activate(NULL, user_data);
 }
 
-
 void on_single_clicked(GtkButton * button, gpointer user_data)
 {
        view_mode = SINGLE_VIEW;
@@ -733,7 +710,6 @@ void on_single_clicked(GtkButton * button, gpointer user_data)
        display_tree_part();
 }
 
-
 void on_split_clicked(GtkButton * button, gpointer user_data)
 {
        gint w, h;
@@ -749,7 +725,6 @@ void on_split_clicked(GtkButton * button, gpointer user_data)
        gtk_widget_set_sensitive(back_btn, FALSE);
 }
 
-
 void on_full_clicked(GtkButton * button, gpointer user_data)
 {
        view_mode = FULL_VIEW;
@@ -760,19 +735,16 @@ void on_full_clicked(GtkButton * button, gpointer user_data)
        gtk_widget_set_sensitive(back_btn, FALSE);
 }
 
-
 void on_collapse_clicked(GtkButton * button, gpointer user_data)
 {
        gtk_tree_view_collapse_all(GTK_TREE_VIEW(tree2_w));
 }
 
-
 void on_expand_clicked(GtkButton * button, gpointer user_data)
 {
        gtk_tree_view_expand_all(GTK_TREE_VIEW(tree2_w));
 }
 
-
 /* CTree Callbacks */
 
 /* Change hex/int/string value in the cell */
@@ -874,7 +846,6 @@ static gint column2index(GtkTreeViewColumn * column)
        return -1;
 }
 
-
 /* User click: update choice (full) or goes down (single) */
 gboolean
 on_treeview2_button_press_event(GtkWidget * widget,
@@ -976,7 +947,6 @@ on_treeview2_key_press_event(GtkWidget * widget,
        return FALSE;
 }
 
-
 /* Row selection changed: update help */
 void
 on_treeview2_cursor_changed(GtkTreeView * treeview, gpointer user_data)
@@ -992,7 +962,6 @@ on_treeview2_cursor_changed(GtkTreeView * treeview, gpointer user_data)
        }
 }
 
-
 /* User click: display sub-tree in the right frame. */
 gboolean
 on_treeview1_button_press_event(GtkWidget * widget,
@@ -1032,7 +1001,6 @@ on_treeview1_button_press_event(GtkWidget * widget,
        return FALSE;
 }
 
-
 /* Fill a row of strings */
 static gchar **fill_row(struct menu *menu)
 {
@@ -1157,7 +1125,6 @@ static gchar **fill_row(struct menu *menu)
        return row;
 }
 
-
 /* Set the node content with a row of strings */
 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row)
 {
@@ -1193,7 +1160,6 @@ static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row)
        g_object_unref(pix);
 }
 
-
 /* Add a node to the tree */
 static void place_node(struct menu *menu, char **row)
 {
@@ -1204,7 +1170,6 @@ static void place_node(struct menu *menu, char **row)
        set_node(node, menu, row);
 }
 
-
 /* Find a node in the GTK+ tree */
 static GtkTreeIter found;
 
@@ -1240,7 +1205,6 @@ GtkTreeIter *gtktree_iter_find_node(GtkTreeIter * parent,
        return NULL;
 }
 
-
 /*
  * Update the tree by adding/removing entries
  * Does not change other nodes
@@ -1329,7 +1293,6 @@ static void update_tree(struct menu *src, GtkTreeIter * dst)
        }
 }
 
-
 /* Display the whole tree (single/split/full view) */
 static void display_tree(struct menu *menu)
 {
@@ -1439,7 +1402,6 @@ void fixup_rootmenu(struct menu *menu)
        }
 }
 
-
 /* Main */
 int main(int ac, char *av[])
 {
index 06e8d555d8b06485aca1166989f58cce30f117aa..9f1d16a43c2e2f362c035d92bf48aa0e738f227d 100644 (file)
        const typeof( ((type *)0)->member ) *__mptr = (ptr);    \
        (type *)( (char *)__mptr - offsetof(type,member) );})
 
-
 struct list_head {
        struct list_head *next, *prev;
 };
 
-
 #define LIST_HEAD_INIT(name) { &(name), &(name) }
 
 #define LIST_HEAD(name) \
index 9eb7c837cd8fd686bbafa000d067db3c8e4b444f..2daf47f57cc3dd321a88833be50fa5e05f6901c1 100644 (file)
@@ -131,7 +131,6 @@ static inline tristate sym_get_tristate_value(struct symbol *sym)
        return sym->curr.tri;
 }
 
-
 static inline struct symbol *sym_get_choice_value(struct symbol *sym)
 {
        return (struct symbol *)sym->curr.val;
index 68b565e3c495664881d1ae85ba9a2d7de6e157e5..7675c4702acb95501054324b67ea62803d245aaf 100644 (file)
@@ -213,7 +213,6 @@ int dialog_yesno(const char *title, const char *prompt, int height, int width);
 int dialog_msgbox(const char *title, const char *prompt, int height,
                  int width, int pause);
 
-
 typedef void (*update_text_fn)(char *buf, size_t start, size_t end, void
                               *_data);
 int dialog_textbox(const char *title, char *tbuf, int initial_height,
index 4e339b12664e0f3d719be4ff41b35b1f789d3a5e..12e68c0fb64f1ed3ec7c1078ca0206b7bdf1672a 100644 (file)
@@ -33,7 +33,6 @@ static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw,
        wrefresh(dialog);
 }
 
-
 /*
  * Display text from a file in a dialog box.
  *
index 4cf15d449c05d2a126d0a3fa9af592068b8ff5d7..0fe7f3255af55cd2d114e5ecdd84b787608f911b 100644 (file)
@@ -853,7 +853,6 @@ struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head)
        return res;
 }
 
-
 void menu_get_ext_help(struct menu *menu, struct gstr *help)
 {
        struct symbol *sym = menu->sym;
index 5cbdb92e11b3b04b855807b263f64c405cf94ee6..ca878212f0abb1edfc09e903ffacdcd6c6c0d4f8 100644 (file)
@@ -687,7 +687,6 @@ static int do_exit(void)
        return 0;
 }
 
-
 static void search_conf(void)
 {
        struct symbol **sym_arr;
@@ -731,7 +730,6 @@ again:
        str_free(&title);
 }
 
-
 static void build_conf(struct menu *menu)
 {
        struct symbol *sym;
index 88874acfda3670afe03fd73c3e17c9cf56b0a569..2a3b853e7eafdb73d0f32cbb22998018c4afccbd 100644 (file)
@@ -143,7 +143,6 @@ void set_colors(void)
        }
 }
 
-
 /* this changes the windows attributes !!! */
 void print_in_middle(WINDOW *win,
                int starty,
@@ -154,7 +153,6 @@ void print_in_middle(WINDOW *win,
 {      int length, x, y;
        float temp;
 
-
        if (win == NULL)
                win = stdscr;
        getyx(win, y, x);
@@ -256,7 +254,6 @@ int btn_dialog(WINDOW *main_window, const char *msg, int btn_num, ...)
        int i, x, y;
        int res = -1;
 
-
        va_start(ap, btn_num);
        for (i = 0; i < btn_num; i++) {
                btn = va_arg(ap, char *);
@@ -280,7 +277,6 @@ int btn_dialog(WINDOW *main_window, const char *msg, int btn_num, ...)
        y = (getmaxy(stdscr)-(msg_lines+4))/2;
        x = (getmaxx(stdscr)-(total_width+4))/2;
 
-
        /* create the windows */
        if (btn_num > 0)
                win_rows = msg_lines+4;
@@ -315,7 +311,6 @@ int btn_dialog(WINDOW *main_window, const char *msg, int btn_num, ...)
        set_menu_mark(menu, "");
        post_menu(menu);
 
-
        touchwin(win);
        refresh_all_windows(main_window);
        while ((res = wgetch(win))) {