summaryrefslogtreecommitdiffstats
path: root/commands/msleep.c
blob: 4aee3c3948fe1caf538fb131524b3b47d9a2a658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
 * msleep.c - delay execution for n milliseconds
 *
 * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
 *
 * derived from commands/sleep.c
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <common.h>
#include <command.h>
#include <clock.h>

static int do_msleep(int argc, char *argv[])
{
	ulong delay;

	if (argc != 2)
		return COMMAND_ERROR_USAGE;

	delay = simple_strtoul(argv[1], NULL, 10);

	mdelay(delay);

	return 0;
}

BAREBOX_CMD_START(msleep)
	.cmd		= do_msleep,
	BAREBOX_CMD_DESC("delay execution for n milli-seconds")
	BAREBOX_CMD_OPTS("MILLISECONDS")
	BAREBOX_CMD_GROUP(CMD_GRP_SCRIPT)
BAREBOX_CMD_END