cregit-Linux how code gets into the kernel

Release 4.10 drivers/leds/leds-sead3.c

Directory: drivers/leds
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2012 MIPS Technologies, Inc.  All rights reserved.
 * Copyright (C) 2015 Imagination Technologies, Inc.
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/leds.h>
#include <linux/err.h>
#include <linux/io.h>

#include <asm/mips-boards/sead3-addr.h>


static void sead3_pled_set(struct led_classdev *led_cdev, enum led_brightness value) { writel(value, (void __iomem *)SEAD3_CPLD_P_LED); }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill2696.30%150.00%
ralf baechleralf baechle13.70%150.00%
Total27100.00%2100.00%


static void sead3_fled_set(struct led_classdev *led_cdev, enum led_brightness value) { writel(value, (void __iomem *)SEAD3_CPLD_F_LED); }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill2696.30%150.00%
ralf baechleralf baechle13.70%150.00%
Total27100.00%2100.00%

static struct led_classdev sead3_pled = { .name = "sead3::pled", .brightness_set = sead3_pled_set, .flags = LED_CORE_SUSPENDRESUME, }; static struct led_classdev sead3_fled = { .name = "sead3::fled", .brightness_set = sead3_fled_set, .flags = LED_CORE_SUSPENDRESUME, };
static int sead3_led_probe(struct platform_device *pdev) { int ret; ret = led_classdev_register(&pdev->dev, &sead3_pled); if (ret < 0) return ret; ret = led_classdev_register(&pdev->dev, &sead3_fled); if (ret < 0) led_classdev_unregister(&sead3_pled); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill64100.00%1100.00%
Total64100.00%1100.00%


static int sead3_led_remove(struct platform_device *pdev) { led_classdev_unregister(&sead3_pled); led_classdev_unregister(&sead3_fled); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill26100.00%1100.00%
Total26100.00%1100.00%

static struct platform_driver sead3_led_driver = { .probe = sead3_led_probe, .remove = sead3_led_remove, .driver = { .name = "sead3-led", }, }; module_platform_driver(sead3_led_driver); MODULE_AUTHOR("Kristian Kielhofner <kris@krisk.org>"); MODULE_DESCRIPTION("SEAD3 LED driver"); MODULE_LICENSE("GPL");

Overall Contributors

PersonTokensPropCommitsCommitProp
steven j. hillsteven j. hill24192.69%120.00%
lars-peter clausenlars-peter clausen103.85%120.00%
ralf baechleralf baechle93.46%360.00%
Total260100.00%5100.00%
Directory: drivers/leds
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.