Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/linux
File: nvram.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_NVRAM_H
[1] Fix | Delete
#define _LINUX_NVRAM_H
[2] Fix | Delete
[3] Fix | Delete
#include <linux/ioctl.h>
[4] Fix | Delete
[5] Fix | Delete
/* /dev/nvram ioctls */
[6] Fix | Delete
#define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
[7] Fix | Delete
#define NVRAM_SETCKS _IO('p', 0x41) /* recalculate checksum */
[8] Fix | Delete
[9] Fix | Delete
/* for all current systems, this is where NVRAM starts */
[10] Fix | Delete
#define NVRAM_FIRST_BYTE 14
[11] Fix | Delete
/* all these functions expect an NVRAM offset, not an absolute */
[12] Fix | Delete
#define NVRAM_OFFSET(x) ((x)-NVRAM_FIRST_BYTE)
[13] Fix | Delete
[14] Fix | Delete
[15] Fix | Delete
#endif /* _LINUX_NVRAM_H */
[16] Fix | Delete
[17] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function