cregit-Linux how code gets into the kernel

Release 4.14 arch/mn10300/kernel/csrc-mn10300.c

/* MN10300 clocksource
 *
 * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.
 * Written by Mark Salter (msalter@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public Licence
 * as published by the Free Software Foundation; either version
 * 2 of the Licence, or (at your option) any later version.
 */
#include <linux/clocksource.h>
#include <linux/init.h>
#include <asm/timex.h>
#include "internal.h"


static u64 mn10300_read(struct clocksource *cs) { return read_timestamp_counter(); }

Contributors

PersonTokensPropCommitsCommitProp
Mark Salter1493.33%150.00%
Thomas Gleixner16.67%150.00%
Total15100.00%2100.00%

static struct clocksource clocksource_mn10300 = { .name = "TSC", .rating = 200, .read = mn10300_read, .mask = CLOCKSOURCE_MASK(32), .flags = CLOCK_SOURCE_IS_CONTINUOUS, };
int __init init_clocksource(void) { startup_timestamp_counter(); clocksource_register_hz(&clocksource_mn10300, MN10300_TSCCLK); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mark Salter2195.45%150.00%
Thomas Gleixner14.55%150.00%
Total22100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Mark Salter8397.65%133.33%
Thomas Gleixner22.35%266.67%
Total85100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.