Staging
v0.8.1
https://github.com/torvalds/linux
Revision cb3e0fe3a5dabdc5eda50b825acb23bdfa2d1d55 authored by Thomas Meyer on 27 August 2006, 08:23:33 UTC, committed by Linus Torvalds on 27 August 2006, 18:01:29 UTC
Commit b64ef8afa58f397e1eaba2bd9ecaa6812064d464 ("[PATCH] add imacfb
documentation and detection") contained a wrong DMI_MATCH.

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent 7fd5aec
Raw File
Tip revision: cb3e0fe3a5dabdc5eda50b825acb23bdfa2d1d55 authored by Thomas Meyer on 27 August 2006, 08:23:33 UTC
[PATCH] x86: Fix dmi detection of MacBookPro and iMac
Tip revision: cb3e0fe
fc_syms.c
/*
 * We should not even be trying to compile this if we are not doing
 * a module.
 */
#include <linux/module.h>

#ifdef CONFIG_MODULES

#include <linux/sched.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>

#include "fcp_impl.h"

EXPORT_SYMBOL(fcp_init);
EXPORT_SYMBOL(fcp_release);
EXPORT_SYMBOL(fcp_queue_empty);
EXPORT_SYMBOL(fcp_receive_solicited);
EXPORT_SYMBOL(fc_channels);
EXPORT_SYMBOL(fcp_state_change);
EXPORT_SYMBOL(fc_do_plogi);
EXPORT_SYMBOL(fc_do_prli);

/* SCSI stuff */
EXPORT_SYMBOL(fcp_scsi_queuecommand);
EXPORT_SYMBOL(fcp_scsi_abort);
EXPORT_SYMBOL(fcp_scsi_dev_reset);
EXPORT_SYMBOL(fcp_scsi_host_reset);

#endif /* CONFIG_MODULES */
back to top