summaryrefslogtreecommitdiff
path: root/ifpps/Makefile
blob: 4d1a9b60d3b248a8eb4a9d9219fc25274b3f084e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ifpps-libs =	$(shell pkg-config --libs ncurses 2> /dev/null \
			|| echo '-lncurses') \
		$(shell pkg-config --libs tinfo 2> /dev/null )

ifpps-objs =	xmalloc.o \
		ioops.o \
		str.o \
		link.o \
		sock.o \
		dev.o \
		sig.o \
		screen.o \
		ifpps.o

ifpps-eflags = $(shell pkg-config --cflags ncurses 2> /dev/null)

ifpps-confs =
el@holtmann.org>2016-09-24 06:40:24 +0200 commit8083ad1cf910dc22d4300213583d9d540853898a (patch) tree69b59b705dcb70ab8f027f93695d5eea08ba593e parentacf91ec384dd4c7c2c88cbaa2e0374e537123c1f (diff)
Bluetooth: Tidy-up coding style in hci_bcsp.c
drivers/bluetooth/hci_bcsp.c contains some style issues as highlighted by ./scripts/checkpatch.pl --strict -f drivers/bluetooth/hci_bcsp.c a) comments - maintainer prefers network style comments b) positioning of lines in multi-line statements c) spaces after casts d) missing blank lines after declarations Therefore, tidy-up the above to make it easier to apply future code changes that have conforming style. Signed-off-by: Dean Jenkins <Dean_Jenkins@mentor.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat