https://github.com/torvalds/linux
Revision 4945cca232ce8bc699b8743f2436af664c471b96 authored by Geert Uytterhoeven on 26 February 2021, 01:21:37 UTC, committed by Linus Torvalds on 26 February 2021, 17:41:04 UTC
Fix a misspelling of "synonym".

Link: https://lkml.kernel.org/r/20210108105305.2028120-1-geert+renesas@glider.be
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 96251a7
Raw File
Tip revision: 4945cca232ce8bc699b8743f2436af664c471b96 authored by Geert Uytterhoeven on 26 February 2021, 01:21:37 UTC
include/linux/bitops.h: spelling s/synomyn/synonym/
Tip revision: 4945cca
Makefile
# SPDX-License-Identifier: GPL-2.0
# Makefile for firmware tools

CFLAGS = -Wall -Wextra -g

all: ihex2fw
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) ihex2fw

.PHONY: all clean
back to top