Skip to content

Commit 4f02884

Browse files
committed
display/audio: Remove unused makefile vars
1 parent 30dc51b commit 4f02884

4 files changed

Lines changed: 2 additions & 8 deletions

File tree

audio_driver/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,10 @@ USE_KERNEL_LIBC = 1
88
# Use only kernel libraries
99
USE_KERNEL_LIBS = 1
1010

11-
INCDIR =
1211
CFLAGS = -Os -G0 -Wall -fno-builtin-printf
1312
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
1413
ASFLAGS = $(CFLAGS)
1514

16-
LIBDIR =
17-
1815
LDFLAGS = -nostartfiles
1916
LIBS = -lpspaudio_driver
2017

audio_driver/audio_driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <pspsdk.h>
22
#include <pspaudio_kernel.h>
33

4-
PSP_MODULE_INFO("audio_driver", PSP_MODULE_KERNEL, 1, 3);
4+
PSP_MODULE_INFO("audio_driver", PSP_MODULE_KERNEL, 1, 4);
55
PSP_NO_CREATE_MAIN_THREAD();
66

77
int pspAudioSetFrequency(int frequency) {

display_driver/Makefile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ CFLAGS = -Os -G0 -Wall -fno-builtin-printf
1313
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
1414
ASFLAGS = $(CFLAGS)
1515

16-
LIBDIR =
17-
1816
LDFLAGS = -nostartfiles
19-
LIBS =
2017

2118
PSPSDK=$(shell psp-config --pspsdk-path)
2219
include $(PSPSDK)/lib/build_prx.mak

display_driver/display_driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <pspdisplay_kernel.h>
33
#include <pspsysmem_kernel.h>
44

5-
PSP_MODULE_INFO("display_driver", PSP_MODULE_KERNEL, 1, 5);
5+
PSP_MODULE_INFO("display_driver", PSP_MODULE_KERNEL, 1, 6);
66
PSP_NO_CREATE_MAIN_THREAD();
77

88
int sceDisplayEnable(void);

0 commit comments

Comments
 (0)