Add license information to files. Mostly automated with: find src/ -name '*.[c,h]' | xargs sed -i '1s,^,// SPDX-License-Identifier: GPL-3.0-only\n\n,' find src/ -name '*.mk' | xargs sed -i '1s,^,# SPDX-License-Identifier: GPL-3.0-only\n\n,'
10 lines
159 B
C
10 lines
159 B
C
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include <board/ps2.h>
|
|
|
|
void ps2_init(void) {
|
|
ps2_reset(&PS2_1);
|
|
ps2_reset(&PS2_2);
|
|
ps2_reset(&PS2_3);
|
|
}
|