]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/network/networkd-brvlan.c
hibernate-resume: add resumeflags= kernel option
[thirdparty/systemd.git] / src / network / networkd-brvlan.c
index 1d18e29b7c164167fe2ce7048089397ffbdaa7e2..8f9103f1466d2a54bafa66021aea3214bb88b490 100644 (file)
@@ -22,7 +22,7 @@ static bool is_bit_set(unsigned bit, uint32_t scope) {
         return scope & (1 << bit);
 }
 
-static inline void set_bit(unsigned nr, uint32_t *addr) {
+static void set_bit(unsigned nr, uint32_t *addr) {
         if (nr < BRIDGE_VLAN_BITMAP_MAX)
                 addr[nr / 32] |= (((uint32_t) 1) << (nr % 32));
 }