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

17 lines
294 B

#ifndef _S390_BUG_H
#define _S390_BUG_H
#include <linux/kernel.h>
#ifdef CONFIG_BUG
#define BUG() do { \
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
__asm__ __volatile__(".long 0"); \
} while (0)
#define HAVE_ARCH_BUG
#endif
#include <asm-generic/bug.h>
#endif