mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
ffe74a6dc9
Sparse reports the following warnings: arch/m68k/68000/ucsimm.c:19:15: sparse: sparse: symbol 'cs8900a_hwaddr' was not declared. Should it be static? arch/m68k/68000/ucsimm.c:22:1: sparse: sparse: symbol 'getserialnum' was not declared. Should it be static? arch/m68k/68000/ucsimm.c:23:1: sparse: sparse: symbol 'gethwaddr' was not declared. Should it be static? arch/m68k/68000/ucsimm.c:24:1: sparse: sparse: symbol 'getbenv' was not declared. Should it be static? 'cs8900a_hwaddr' is not used anywhere else in the kernel, so it can be removed. All of 'getserialnum', 'gethwaddr' and 'getbenv' are only used in this file, so they can all be made static. It turns out that these also cause compiler warnings like this too: arch/m68k/68000/ucsimm.c:22:15: warning: no previous prototype for 'getserialnum' [-Wmissing-prototypes] Also fixed by making them all static. Signed-off-by: Greg Ungerer <gerg@linux-m68k.org> Reported-by: kernel test robot <lkp@intel.com>
38 lines
881 B
C
38 lines
881 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 1993 Hamish Macdonald
|
|
* Copyright (C) 1999 D. Jeff Dionne
|
|
* Copyright (C) 2001 Georges Menie, Ken Desmet
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <asm/bootstd.h>
|
|
#include <asm/machdep.h>
|
|
#include <asm/MC68VZ328.h>
|
|
|
|
|
|
#include "m68328.h"
|
|
|
|
static int errno;
|
|
|
|
static _bsc0(char *, getserialnum)
|
|
static _bsc1(unsigned char *, gethwaddr, int, a)
|
|
static _bsc1(char *, getbenv, char *, a)
|
|
|
|
void __init init_ucsimm(char *command, int size)
|
|
{
|
|
char *p;
|
|
|
|
pr_info("uCsimm/uCdimm serial string [%s]\n", getserialnum());
|
|
p = gethwaddr(0);
|
|
pr_info("uCsimm/uCdimm hwaddr %pM\n", p);
|
|
p = getbenv("APPEND");
|
|
if (p)
|
|
strcpy(p, command);
|
|
else
|
|
command[0] = 0;
|
|
}
|