OpenCores
URL https://opencores.org/ocsvn/or1k_soc_on_altera_embedded_dev_kit/or1k_soc_on_altera_embedded_dev_kit/trunk

Subversion Repositories or1k_soc_on_altera_embedded_dev_kit

[/] [or1k_soc_on_altera_embedded_dev_kit/] [trunk/] [linux-2.6/] [linux-2.6.24/] [arch/] [mips/] [kernel/] [pcspeaker.c] - Rev 17

Go to most recent revision | Compare with Previous | Blame | View Log

/*
 * Copyright (C) 2006 IBM Corporation
 *
 * Implements device information for i8253 timer chip
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation
 */
 
#include <linux/platform_device.h>
 
static __init int add_pcspkr(void)
{
	struct platform_device *pd;
	int ret;
 
	pd = platform_device_alloc("pcspkr", -1);
	if (!pd)
		return -ENOMEM;
 
	ret = platform_device_add(pd);
	if (ret)
		platform_device_put(pd);
 
	return ret;
}
device_initcall(add_pcspkr);
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.