libpayload: minor cleanups
Apply some const correctness to const/non-const strings in libc and libpci (what an ugly cast that was). Remove duplicated NULL test in printf_putstr(), already done in print_string() - reduces size of libpayload by a few bytes. Change-Id: I13f479df13e39d79cab291e9d99d153e1ef43eae Signed-off-by: Mathias Krause <minipli@googlemail.com> Reviewed-on: http://review.coreboot.org/849 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
committed by
Stefan Reinauer
parent
f17789c4ff
commit
67997d330d
@@ -96,7 +96,7 @@ void pci_filter_init(struct pci_access* pacc, struct pci_filter* pf)
|
||||
pf->device = -1;
|
||||
}
|
||||
|
||||
static char *invalid_pci_device_string = (char *)"invalid pci device string";
|
||||
static char invalid_pci_device_string[] = "invalid pci device string";
|
||||
|
||||
/* parse domain:bus:dev.func (with all components but "dev" optional)
|
||||
* into filter.
|
||||
|
Reference in New Issue
Block a user