X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Fdm-demo.h;h=c9a82c7e52c202dd429d0ad27683b17858c36d6d;hb=faab193ea2a8992b18026318f36cc7139b4ca1b5;hp=a24fec6658e8e9bb1df82235222befc404411b32;hpb=dab5e3469d294a4e1ffed8407d296a78e02cc01f;p=oweals%2Fu-boot.git diff --git a/include/dm-demo.h b/include/dm-demo.h index a24fec6658..c9a82c7e52 100644 --- a/include/dm-demo.h +++ b/include/dm-demo.h @@ -1,7 +1,6 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2013 Google, Inc - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef __DM_DEMO_H @@ -25,10 +24,14 @@ struct dm_demo_pdata { struct demo_ops { int (*hello)(struct udevice *dev, int ch); int (*status)(struct udevice *dev, int *status); + int (*set_light)(struct udevice *dev, int light); + int (*get_light)(struct udevice *dev); }; int demo_hello(struct udevice *dev, int ch); int demo_status(struct udevice *dev, int *status); +int demo_set_light(struct udevice *dev, int light); +int demo_get_light(struct udevice *dev); int demo_list(void); int demo_parse_dt(struct udevice *dev);