From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54418) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgxeE-0006LD-CO for qemu-devel@nongnu.org; Mon, 05 Sep 2016 13:25:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgxeB-00072L-68 for qemu-devel@nongnu.org; Mon, 05 Sep 2016 13:25:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41634) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgxeB-00072C-0O for qemu-devel@nongnu.org; Mon, 05 Sep 2016 13:25:27 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 920313B3C2 for ; Mon, 5 Sep 2016 17:25:26 +0000 (UTC) From: "Daniel P. Berrange" Date: Mon, 5 Sep 2016 18:25:17 +0100 Message-Id: <1473096320-1638-1-git-send-email-berrange@redhat.com> Subject: [Qemu-devel] [PATCH 0/3] Remove some unused CONFIG_* variables List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , "Daniel P. Berrange" There are a few CONFIG_* variables defined in default-configs/ that are never referenced. These were found using: $ for i in `grep -h -E '^CONFIG' default-configs/* | sed -e 's/=.*//' | sort | uniq` do echo -n "$i: " git grep $i | grep -v default-configs | wc -l done | grep ": 0" CONFIG_IPMI_EXTERN: 0 CONFIG_ISA_MMIO: 0 CONFIG_PAM: 0 CONFIG_PIIX_PCI: 0 NB, the IPMI_EXTERN one is special - it should have been used, so I sent a separate patch for that one. Daniel P. Berrange (3): default-configs: remove CONFIG_PAM default-configs: removed obsolete CONFIG_ISA_MMIO default-configs: remove CONFIG_PIIX_PCI default-configs/arm-softmmu.mak | 1 - default-configs/i386-softmmu.mak | 2 -- default-configs/ppc-softmmu.mak | 1 - default-configs/ppc64-softmmu.mak | 1 - default-configs/sparc64-softmmu.mak | 1 - default-configs/x86_64-softmmu.mak | 2 -- 6 files changed, 8 deletions(-) -- 2.7.4