mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
20 lines
527 B
C
20 lines
527 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ALPHA_PERCPU_H
|
|
#define __ALPHA_PERCPU_H
|
|
|
|
/*
|
|
* To calculate addresses of locally defined variables, GCC uses
|
|
* 32-bit displacement from the GP. Which doesn't work for per cpu
|
|
* variables in modules, as an offset to the kernel per cpu area is
|
|
* way above 4G.
|
|
*
|
|
* Always use weak definitions for percpu variables in modules.
|
|
*/
|
|
#if defined(MODULE) && defined(CONFIG_SMP)
|
|
#define ARCH_NEEDS_WEAK_PER_CPU
|
|
#endif
|
|
|
|
#include <asm-generic/percpu.h>
|
|
|
|
#endif /* __ALPHA_PERCPU_H */
|