Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cedbccab authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

proc: more "const char *" pointers

parent 849d20a1
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@
 */

struct pid_entry {
	char *name;
	const char *name;
	int len;
	umode_t mode;
	const struct inode_operations *iop;
@@ -418,8 +418,8 @@ static int proc_oom_score(struct task_struct *task, char *buffer)
}

struct limit_names {
	char *name;
	char *unit;
	const char *name;
	const char *unit;
};

static const struct limit_names lnames[RLIM_NLIMITS] = {
@@ -2056,7 +2056,7 @@ static int show_timer(struct seq_file *m, void *v)
	struct k_itimer *timer;
	struct timers_private *tp = m->private;
	int notify;
	static char *nstr[] = {
	static const char * const nstr[] = {
		[SIGEV_SIGNAL] = "signal",
		[SIGEV_NONE] = "none",
		[SIGEV_THREAD] = "thread",