summaryrefslogtreecommitdiff
path: root/scripts/modules-check.sh
blob: f51f446707b82de9462d4a1c47949ecd5468a7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

set -e

# Check uniqueness of module names
check_same_name_modules()
{
	for m in $(sed 's:.*/::' modules.order | sort | uniq -d)
	do
		echo "warning: same module names found:" >&2
		sed -n "/\/$m/s:^:  :p" modules.order >&2
	done
}

check_same_name_modules
ie before setting time and enable afterAlexandre Belloni 2019-10-03rtc: interface: use timeu64_t for range_maxEmmanuel Nicolet 2019-07-30drivers: Introduce device lookup variants by nameSuzuki K Poulose 2019-07-13rtc: interface: Change type of 'count' from int to u64Puranjay Mohan 2019-05-08rtc: drop set_mms and set_mmss64Alexandre Belloni 2019-04-04rtc: don't reference bogus function pointer in kdocWolfram Sang 2019-04-04rtc: core: correct trivial checkpatch warningsAlexandre Belloni 2019-03-18rtc: convert core to SPDX identifierAlexandre Belloni 2018-12-18rtc: enforce rtc_timer_init private_data typeAlexandre Belloni 2018-12-10rtc: Switch to use %ptRAndy Shevchenko 2018-09-13rtc: remove irq_task from kerneldocAlexandre Belloni 2018-08-20Merge tag 'rtc-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/abellon...Linus Torvalds 2018-08-02rtc: remove struct rtc_taskAlexandre Belloni 2018-07-26rtc: unexport rtc_irq_set_*Alexandre Belloni 2018-07-26rtc: simplify rtc_irq_set_state/rtc_irq_set_freqAlexandre Belloni 2018-07-26rtc: remove irq_task and irq_task_lockAlexandre Belloni 2018-07-26rtc: remove rtc_irq_register/rtc_irq_unregisterAlexandre Belloni 2018-07-13rtc: fix alarm read and set offsetAlexandre Belloni 2018-06-07rtc: ensure rtc_set_alarm fails when alarms are not supportedAlexandre Belloni 2018-03-17rtc: Add one offset seconds to expand RTC rangeBaolin Wang 2018-03-17rtc: Factor out the RTC range validation into rtc_valid_range()Baolin Wang 2018-03-17rtc: Add RTC rangeAlexandre Belloni 2018-02-13rtc: Add tracepoints for RTC systemBaolin Wang 2017-10-25rtc: clarify the RTC offset correctionRussell King 2017-09-28rtc: set the alarm to the next expiring timerAlexandre Belloni 2017-05-31rtc: interface: Validate alarm-time before handling rolloverVaibhav Jain 2016-12-25ktime: Cleanup ktime_set() usageThomas Gleixner 2016-12-25ktime: Get rid of the unionThomas Gleixner