Your ROOT_URL in app.ini is https://gitea.jennalody.de/ but you are visiting https://gitea.jenslody.de/jenna/kernel_samsung_sm7125/blame/commit/71d276d751ff5ddba28312aecefb174b20a5b970/include/asm-frv/init.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
kernel_samsung_sm7125/include/asm-frv/init.h

13 lines
340 B

#ifndef _ASM_INIT_H
#define _ASM_INIT_H
#define __init __attribute__ ((__section__ (".text.init")))
#define __initdata __attribute__ ((__section__ (".data.init")))
/* For assembly routines */
#define __INIT .section ".text.init",#alloc,#execinstr
#define __FINIT .previous
#define __INITDATA .section ".data.init",#alloc,#write
#endif