blob: bc9b87c44c47729c9f858ec9a741b02318fd1822 [file] [log] [blame]
Simon Glass77f9b1f2014-11-12 22:42:21 -07001/*
2 * Copyright (c) 2015 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __ASM_ARCH_MICROCODE_H
8#define __ASM_ARCH_MICROCODE_H
9
10/**
11 * microcode_update_intel() - Apply microcode updates
12 *
13 * Applies any microcode updates in the device tree.
14 *
15 * @return 0 if OK, -EEXIST if the updates were already applied, -ENOENT if
16 * not updates were found, -EINVAL if an update was invalid
17 */
18int microcode_update_intel(void);
19
20#endif