[PATCH] lpd/test: Fix test case
Vasant Hegde <[email protected]> Mon, 21 Nov 2016 16:53:03 +0530
| Newsgroups | gmane.linux.tools.diag.devel |
|---|---|
| Message-ID | <20161121112258.13998.82511.stgit@hegdevasant> |
Commit 4c7400ba added Marvell HDD LED code, but forgot to update test dir Makefile. Though we don't support fault LED on Marvell HDD, we need to update test/Makefile, else compilation will fail. I think we have to rewrite part of test code. But that's for some other day. Fixes: 4c7400ba (lpd: Add support for Marvell HDD LEDs on S822LC for HPC) CC: Mauricio Faria de Oliveira <[email protected]> Signed-off-by: Vasant Hegde <[email protected]> --- lpd/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lpd/test/Makefile b/lpd/test/Makefile index c855426..5c599fb 100644 --- a/lpd/test/Makefile +++ b/lpd/test/Makefile @@ -16,7 +16,7 @@ LPD_DIR = $(ROOT_DIR)/lpd COMMON_OBJS = $(COMMON_DIR)/utils.o $(COMMON_DIR)/platform.o LPD_OBJS = $(COMMON_OBJS) ../files.o ../lp_util.o ../indicator_ses.o \ ../indicator_rtas.o ../indicator_opal.o ../indicator.o \ - ../servicelog.o + ../servicelog.o ../indicator_marvell.o LED_TOOL_OBJS = ledtool.o SES_TOOL_OBJS = sesdevices.o ------------------------------------------------------------------------------