Make model_names static in mkmpioboot.

Both mkmpioboot and mkamsboot use an array model_names which clash when
linking with Rockbox Utility so don't export the mkmpioboot one.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28690 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-11-28 10:06:01 +00:00
parent 5d274e528c
commit 10e0279afc

View file

@ -31,7 +31,7 @@
#define BOOTLOADER_MAX_SIZE 0x1f800 /* free space size */
/* Descriptive name of these models */
const char* model_names[] = {
static const char* model_names[] = {
[MODEL_HD200] = "MPIO HD200",
[MODEL_HD300] = "MPIO HD300",
};