This is equivalent to asm/fpu/api.h, but is included by drm on aarch64.
Details
Details
- Reviewers
manu • hselasky imp bz - Group Reviewers
linuxkpi - Commits
- rG8870cb573f4a: LinuxKPI: add asm/neon.h
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sys/compat/linuxkpi/common/include/asm/neon.h | ||
---|---|---|
38 | We try to not follow linux with extern in linuxkpi (at least recently). |
sys/compat/linuxkpi/common/include/asm/neon.h | ||
---|---|---|
38 | hm. the function exists, should I just not declare it as extern? why? Should the x86 header also be changed in the same patch? |
sys/compat/linuxkpi/common/include/asm/neon.h | ||
---|---|---|
38 | When declaring prototypes for global functions, the extern keyword is optional. Only for variables it is needed. I'm good with either version. |
Comment Actions
With the nit please fixed in the last line.
Also raises a question on how we are going to deal with per-arch asm headers eventually in the future ...?
sys/compat/linuxkpi/common/include/asm/neon.h | ||
---|---|---|
41 | NEON not FPU_API |