From: Uwe Kleine-König Date: Sat, 30 Jan 2010 15:57:48 +0000 (+0100) Subject: modpost: remove now unused NO_MISMATCH constant X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~25626^2~57^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=fc2f7efadb755b020ad8fdf195515dacaf185e2d;p=mirror_ubuntu-focal-kernel.git modpost: remove now unused NO_MISMATCH constant Signed-off-by: Uwe Kleine-König --- diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 3f0380b8d8f7..a94bd10ad2de 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -835,7 +835,6 @@ static const char *linker_symbols[] = { "__init_begin", "_sinittext", "_einittext", NULL }; enum mismatch { - NO_MISMATCH, TEXT_TO_ANY_INIT, DATA_TO_ANY_INIT, TEXT_TO_ANY_EXIT, @@ -1280,8 +1279,6 @@ static void report_sec_mismatch(const char *modname, "Fix this by removing the %sannotation of %s " "or drop the export.\n", tosym, sec2annotation(tosec), sec2annotation(tosec), tosym); - case NO_MISMATCH: - /* To get warnings on missing members */ break; } fprintf(stderr, "\n");