mirror of
https://github.com/systemd/systemd.git
synced 2025-01-27 18:04:05 +03:00
tree-wide: drop empty lines in comments
This commit is contained in:
parent
46f2579c2a
commit
f330408d62
@ -1,6 +1,4 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||
/*
|
||||
*/
|
||||
|
||||
#if ENABLE_TPM
|
||||
|
||||
|
@ -1,6 +1,4 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||
/*
|
||||
*/
|
||||
#ifndef __SDBOOT_MEASURE_H
|
||||
#define __SDBOOT_MEASURE_H
|
||||
|
||||
|
@ -3,7 +3,6 @@
|
||||
* under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation; either version 2.1 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <efi.h>
|
||||
|
@ -661,7 +661,6 @@ int bpf_firewall_supported(void) {
|
||||
* c) the BPF implementation in the kernel supports BPF LPM TRIE maps, which we require
|
||||
* d) the BPF implementation in the kernel supports BPF_PROG_TYPE_CGROUP_SKB programs, which we require
|
||||
* e) the BPF implementation in the kernel supports the BPF_PROG_ATTACH call, which we require
|
||||
*
|
||||
*/
|
||||
|
||||
if (supported >= 0)
|
||||
|
@ -1366,7 +1366,6 @@ bool job_may_gc(Job *j) {
|
||||
* we start + other stop → gc
|
||||
* we stop + other start → stay
|
||||
* we stop + other stop → stay
|
||||
*
|
||||
*/
|
||||
|
||||
return true;
|
||||
|
@ -22,7 +22,6 @@
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
|
@ -10,7 +10,6 @@
|
||||
* If you change this file you probably should also change its documentation:
|
||||
*
|
||||
* http://www.freedesktop.org/wiki/Software/systemd/journal-files
|
||||
*
|
||||
*/
|
||||
|
||||
typedef struct Header Header;
|
||||
|
@ -147,7 +147,6 @@ static int hwdb_add_property(sd_hwdb *hwdb, const struct trie_value_entry_f *ent
|
||||
old = ordered_hashmap_get(hwdb->properties, key);
|
||||
if (old) {
|
||||
/* On duplicates, we order by filename priority and line-number.
|
||||
*
|
||||
*
|
||||
* v2 of the format had 64 bits for the line number.
|
||||
* v3 reuses top 32 bits of line_number to store the priority.
|
||||
|
@ -58,7 +58,6 @@ int manager_image_cache_add(Manager *m, Image *image) {
|
||||
*
|
||||
* 2. If the image was discovered in the search path (i.e. its discoverable boolean set) we'll also add it
|
||||
* under its short name.
|
||||
*
|
||||
*/
|
||||
|
||||
r = manager_image_cache_initialize(m);
|
||||
|
@ -2143,7 +2143,6 @@ static int dnssec_test_positive_wildcard_nsec(
|
||||
* 3) b.c.d.e.f
|
||||
* 4) *.c.d.e.f
|
||||
* 5) c.d.e.f
|
||||
*
|
||||
*/
|
||||
|
||||
for (;;) {
|
||||
|
@ -9,8 +9,8 @@
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* Version: @(#)initreq.h 1.28 31-Mar-2004 MvS
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _INITREQ_H
|
||||
#define _INITREQ_H
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
||||
/*
|
||||
* Generic infrastructure for replacing %x style specifiers in
|
||||
* strings. Will call a callback for each replacement.
|
||||
*
|
||||
*/
|
||||
|
||||
/* Any ASCII character or digit: our pool of potential specifiers,
|
||||
|
@ -1,7 +1,6 @@
|
||||
/*
|
||||
* systemd service to wait until kernel realtime clock is synchronized
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
|
@ -3,7 +3,6 @@
|
||||
* ata_id - reads product/serial number from ATA drives
|
||||
*
|
||||
* Copyright © 2009-2010 David Zeuthen <zeuthen@gmail.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
|
@ -1,8 +1,6 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
* cdrom_id - optical drive and media information prober
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -17,7 +17,6 @@
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -2,7 +2,6 @@
|
||||
/*
|
||||
* Copyright © IBM Corp. 2003
|
||||
* Copyright © SUSE Linux Products GmbH, 2006
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*
|
||||
* Copyright © IBM Corp. 2003
|
||||
*
|
||||
*/
|
||||
|
||||
#define MAX_PATH_LEN 512
|
||||
|
@ -3,7 +3,6 @@
|
||||
* Copyright © IBM Corp. 2003
|
||||
*
|
||||
* Author: Patrick Mansfield<patmans@us.ibm.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -3,7 +3,6 @@
|
||||
* probe disks for filesystems and partitions
|
||||
*
|
||||
* Copyright © 2011 Karel Zak <kzak@redhat.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <blkid.h>
|
||||
|
@ -4,7 +4,6 @@
|
||||
*
|
||||
* Portions Copyright © 2004 David Zeuthen, <david@fubar.dk>
|
||||
* Copyright © 2014 Carlos Garnacho <carlosg@gnome.org>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -3,7 +3,6 @@
|
||||
* load kernel modules
|
||||
*
|
||||
* Copyright © 2011 ProFUSION embedded systems
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -2,9 +2,7 @@
|
||||
/*
|
||||
* compose persistent device path
|
||||
*
|
||||
*
|
||||
* Logic based on Hannes Reinecke's shell script.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
|
@ -1,8 +1,6 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
* manage device node user ACL
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -4,8 +4,6 @@
|
||||
*
|
||||
* Copyright (c) 2005 SUSE Linux Products GmbH, Germany
|
||||
* Author: Hannes Reinecke <hare@suse.de>
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
|
@ -2,7 +2,6 @@
|
||||
*
|
||||
* libudev - interface to udev device information
|
||||
*
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
@ -2,7 +2,6 @@
|
||||
/*
|
||||
* Copyright © 2009 Canonical Ltd.
|
||||
* Copyright © 2009 Scott James Remnant <scott@netsplit.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -3,7 +3,6 @@
|
||||
|
||||
/*
|
||||
* Copyright © 2003 Greg Kroah-Hartman <greg@kroah.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -1,6 +1,5 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <getopt.h>
|
||||
|
@ -2,7 +2,6 @@
|
||||
/*
|
||||
* Copyright © 2009 Canonical Ltd.
|
||||
* Copyright © 2009 Scott James Remnant <scott@netsplit.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <getopt.h>
|
||||
|
@ -1,7 +1,6 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
* Copyright © 2003-2004 Greg Kroah-Hartman <greg@kroah.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include "path-util.h"
|
||||
#include "string-util.h"
|
||||
|
@ -1,9 +1,6 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
#pragma once
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
#include "udev.h"
|
||||
|
||||
struct udev_device *find_device(struct udev *udev,
|
||||
|
@ -1,7 +1,4 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <getopt.h>
|
||||
|
@ -3,7 +3,6 @@
|
||||
* Copyright © 2004 Chris Friesen <chris_friesen@sympatico.ca>
|
||||
* Copyright © 2009 Canonical Ltd.
|
||||
* Copyright © 2009 Scott James Remnant <scott@netsplit.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user