mirror of
https://github.com/gnif/vendor-reset.git
synced 2025-12-27 06:19:29 +01:00
Fix build on kernel 6.8+
This commit is contained in:
parent
1374629d08
commit
f72619e468
@ -28,6 +28,7 @@
|
|||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
#include <linux/version.h>
|
||||||
#include <asm/unaligned.h>
|
#include <asm/unaligned.h>
|
||||||
|
|
||||||
//#include <drm/drm_util.h>
|
//#include <drm/drm_util.h>
|
||||||
@ -39,6 +40,10 @@
|
|||||||
#include "atom-names.h"
|
#include "atom-names.h"
|
||||||
#include "atom-bits.h"
|
#include "atom-bits.h"
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 3, 0)
|
||||||
|
#define strscpy strlcpy
|
||||||
|
#endif
|
||||||
|
|
||||||
#define ATOM_COND_ABOVE 0
|
#define ATOM_COND_ABOVE 0
|
||||||
#define ATOM_COND_ABOVEOREQUAL 1
|
#define ATOM_COND_ABOVEOREQUAL 1
|
||||||
#define ATOM_COND_ALWAYS 2
|
#define ATOM_COND_ALWAYS 2
|
||||||
@ -1424,7 +1429,7 @@ struct atom_context *amdgpu_atom_parse(struct card_info *card, void *bios)
|
|||||||
if (*str != '\0')
|
if (*str != '\0')
|
||||||
{
|
{
|
||||||
pr_info("ATOM BIOS: %s\n", str);
|
pr_info("ATOM BIOS: %s\n", str);
|
||||||
strlcpy(ctx->vbios_version, str, sizeof(ctx->vbios_version));
|
strscpy(ctx->vbios_version, str, sizeof(ctx->vbios_version));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ctx;
|
return ctx;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user