Cleanup: remove trailing white spaces across project
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Mon, 17 Feb 2020 23:13:56 +0000 (18:13 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 18 Feb 2020 16:10:37 +0000 (11:10 -0500)
Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I2de34e4913f9cefbd72a138f2d3dfb9d67ece311

instrumentation/syscalls/lttng-syscalls-extractor/lttng-syscalls-extractor.c
lttng-ring-buffer-metadata-client.h
wrapper/irqdesc.c
wrapper/random.c
wrapper/splice.c

index e88bb5d63e6f8ae525e4e93b361a98ffc01d3223..ccf7681f6c74e1e420014857213f18a5088257e7 100644 (file)
@@ -82,6 +82,6 @@ int init_module(void)
 
 void cleanup_module(void)
 {
 
 void cleanup_module(void)
 {
-}  
+}
 
 MODULE_LICENSE("GPL");
 
 MODULE_LICENSE("GPL");
index 17ffd7593812a45af8f80e75a7b25e1301e4cfe9..2e13f6a13d3b4e462664ae9de829815bb5fefce6 100644 (file)
@@ -348,7 +348,6 @@ void lttng_event_strcpy(struct lib_ring_buffer_ctx *ctx, const char *src,
 
 static
 size_t lttng_packet_avail_size(struct channel *chan)
 
 static
 size_t lttng_packet_avail_size(struct channel *chan)
-                            
 {
        unsigned long o_begin;
        struct lib_ring_buffer *buf;
 {
        unsigned long o_begin;
        struct lib_ring_buffer *buf;
index 1d6e2890d395a4b5f189cf06a73aab67407fa41e..be6cf3ba8a8ce6a4ab03a6b5c68ddc3dff3a0fb8 100644 (file)
@@ -23,7 +23,7 @@ struct irq_desc *(*irq_to_desc_sym)(unsigned int irq);
 struct irq_desc *wrapper_irq_to_desc(unsigned int irq)
 {
        if (!irq_to_desc_sym)
 struct irq_desc *wrapper_irq_to_desc(unsigned int irq)
 {
        if (!irq_to_desc_sym)
-               irq_to_desc_sym = (void *) kallsyms_lookup_funcptr("irq_to_desc"); 
+               irq_to_desc_sym = (void *) kallsyms_lookup_funcptr("irq_to_desc");
        if (irq_to_desc_sym) {
                return irq_to_desc_sym(irq);
        } else {
        if (irq_to_desc_sym) {
                return irq_to_desc_sym(irq);
        } else {
index c938ae35a4ac2a96a2a2deee26cb645a33792af2..0bd853ba4a8774e3b5fbab26bded1d8a599a617d 100644 (file)
@@ -47,7 +47,7 @@ int wrapper_get_bootid(char *bootid)
                ret = -EINVAL;
                goto end;
        }
                ret = -EINVAL;
                goto end;
        }
-       
+
        bootid[BOOT_ID_LEN - 1] = '\0';
        ret = 0;
 end:
        bootid[BOOT_ID_LEN - 1] = '\0';
        ret = 0;
 end:
index 44a4d6b87b2b8062b571ed6270b4556006e8572a..d7ef83d8a2c98443336d05ed8c0c32709d6be882 100644 (file)
@@ -24,7 +24,7 @@ ssize_t wrapper_splice_to_pipe(struct pipe_inode_info *pipe,
                               struct splice_pipe_desc *spd)
 {
        if (!splice_to_pipe_sym)
                               struct splice_pipe_desc *spd)
 {
        if (!splice_to_pipe_sym)
-               splice_to_pipe_sym = (void *) kallsyms_lookup_funcptr("splice_to_pipe"); 
+               splice_to_pipe_sym = (void *) kallsyms_lookup_funcptr("splice_to_pipe");
        if (splice_to_pipe_sym) {
                return splice_to_pipe_sym(pipe, spd);
        } else {
        if (splice_to_pipe_sym) {
                return splice_to_pipe_sym(pipe, spd);
        } else {
This page took 0.028112 seconds and 4 git commands to generate.