~ubuntu-branches/ubuntu/wily/msrtool/wily-proposed

« back to all changes in this revision

Viewing changes to cs5536.c

  • Committer: Bazaar Package Importer
  • Author(s): Uwe Hermann
  • Date: 2009-04-11 03:37:56 UTC
  • Revision ID: james.westby@ubuntu.com-20090411033756-e1ltraq7eoi86vnd
Tags: upstream-0.0+r4091
ImportĀ upstreamĀ versionĀ 0.0+r4091

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of msrtool.
 
3
 *
 
4
 * Copyright (c) 2008 Peter Stuge <peter@stuge.se>
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License version 2 as
 
8
 * published by the Free Software Foundation.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
18
 */
 
19
 
 
20
#include "msrtool.h"
 
21
 
 
22
int cs5536_probe(const struct targetdef *target) {
 
23
        return (NULL != pci_dev_find(0x1022, 0x2090));
 
24
}
 
25
 
 
26
const struct msrdef cs5536_msrs[] = {
 
27
        { MSR_EOT }
 
28
};