mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 09:31:26 +00:00
09a56fbe8a
Drop use of the deprecated drmP.h header. Sort includes in blocks while touching the files. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Eric Anholt <eric@anholt.net> Cc: David Airlie <airlied@linux.ie> Cc: Daniel Vetter <daniel@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20190716064220.18157-4-sam@ravnborg.org
20 lines
261 B
C
20 lines
261 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#ifndef PL111_NOMADIK_H
|
|
#define PL111_NOMADIK_H
|
|
#endif
|
|
|
|
struct device;
|
|
|
|
#ifdef CONFIG_ARCH_NOMADIK
|
|
|
|
void pl111_nomadik_init(struct device *dev);
|
|
|
|
#else
|
|
|
|
static inline void pl111_nomadik_init(struct device *dev)
|
|
{
|
|
}
|
|
|
|
#endif
|