Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0bbed20e authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman
Browse files

char: remove use of __devinitdata



CONFIG_HOTPLUG is going away as an option so __devinitdata is no
longer needed.

Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: David Airlie <airlied@linux.ie>
Cc: Kent Yoder <key@linux.vnet.ibm.com>
Cc: Rajiv Andrade <mail@srajiv.net>
Cc: Marcel Selhorst <tpmdd@selhorst.net>
Cc: Sirrix AG <tpmdd@sirrix.com>
Cc: openipmi-developer@lists.sourceforge.net
Cc: tpmdd-devel@lists.sourceforge.net
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2223cbec
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -249,7 +249,7 @@ static const struct agp_bridge_driver ali_m1541_bridge = {
};
};




static struct agp_device_ids ali_agp_device_ids[] __devinitdata =
static struct agp_device_ids ali_agp_device_ids[] =
{
{
	{
	{
		.device_id	= PCI_DEVICE_ID_AL_M1541,
		.device_id	= PCI_DEVICE_ID_AL_M1541,
+1 −1
Original line number Original line Diff line number Diff line
@@ -388,7 +388,7 @@ static const struct agp_bridge_driver amd_irongate_driver = {
	.agp_type_to_mask_type  = agp_generic_type_to_mask_type,
	.agp_type_to_mask_type  = agp_generic_type_to_mask_type,
};
};


static struct agp_device_ids amd_agp_device_ids[] __devinitdata =
static struct agp_device_ids amd_agp_device_ids[] =
{
{
	{
	{
		.device_id	= PCI_DEVICE_ID_AMD_FE_GATE_7006,
		.device_id	= PCI_DEVICE_ID_AMD_FE_GATE_7006,
+1 −1
Original line number Original line Diff line number Diff line
@@ -445,7 +445,7 @@ static const struct agp_bridge_driver ati_generic_bridge = {
};
};




static struct agp_device_ids ati_agp_device_ids[] __devinitdata =
static struct agp_device_ids ati_agp_device_ids[] =
{
{
	{
	{
		.device_id	= PCI_DEVICE_ID_ATI_RS100,
		.device_id	= PCI_DEVICE_ID_ATI_RS100,
+3 −3
Original line number Original line Diff line number Diff line
@@ -17,8 +17,8 @@
#define PCI_DEVICE_ID_SI_662	0x0662
#define PCI_DEVICE_ID_SI_662	0x0662
#define PCI_DEVICE_ID_SI_671	0x0671
#define PCI_DEVICE_ID_SI_671	0x0671


static bool __devinitdata agp_sis_force_delay = 0;
static bool agp_sis_force_delay = 0;
static int __devinitdata agp_sis_agp_spec = -1;
static int agp_sis_agp_spec = -1;


static int sis_fetch_size(void)
static int sis_fetch_size(void)
{
{
@@ -148,7 +148,7 @@ static struct agp_bridge_driver sis_driver = {
};
};


// chipsets that require the 'delay hack'
// chipsets that require the 'delay hack'
static int sis_broken_chipsets[] __devinitdata = {
static int sis_broken_chipsets[] = {
	PCI_DEVICE_ID_SI_648,
	PCI_DEVICE_ID_SI_648,
	PCI_DEVICE_ID_SI_746,
	PCI_DEVICE_ID_SI_746,
	0 // terminator
	0 // terminator
+1 −1
Original line number Original line Diff line number Diff line
@@ -557,7 +557,7 @@ const struct agp_bridge_driver u3_agp_driver = {
	.needs_scratch_page	= true,
	.needs_scratch_page	= true,
};
};


static struct agp_device_ids uninorth_agp_device_ids[] __devinitdata = {
static struct agp_device_ids uninorth_agp_device_ids[] = {
	{
	{
		.device_id	= PCI_DEVICE_ID_APPLE_UNI_N_AGP,
		.device_id	= PCI_DEVICE_ID_APPLE_UNI_N_AGP,
		.chipset_name	= "UniNorth",
		.chipset_name	= "UniNorth",
Loading