Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.1 18 lines 345 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2006 Simtec Electronics 4 * http://armlinux.simtec.co.uk/ 5 * Ben Dooks <ben@simtec.co.uk> 6 * 7 * S3C24XX - LEDs GPIO connector 8*/ 9 10#ifndef __LEDS_S3C24XX_H 11#define __LEDS_S3C24XX_H 12 13struct s3c24xx_led_platdata { 14 char *name; 15 char *def_trigger; 16}; 17 18#endif /* __LEDS_S3C24XX_H */