From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from az33egw02.freescale.net (az33egw02.freescale.net [192.88.158.103]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "az33egw02.freescale.net", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id AD04DDDE03 for ; Tue, 11 Nov 2008 02:02:13 +1100 (EST) Message-ID: <491846A9.8080709@freescale.com> Date: Mon, 10 Nov 2008 08:35:21 -0600 From: Timur Tabi MIME-Version: 1.0 To: Bruce_Leonard@selinc.com Subject: Re: Using DMA References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Cc: timur.tabi@gmail.com, linuxppc-embedded@ozlabs.org List-Id: Linux on Embedded PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Bruce_Leonard@selinc.com wrote: > Is there something else I need to do? Or is there something wrong with my > device tree (always a possibility :) ). Any help is appreciated. You might need to add something like this: static struct of_device_id __initdata mpc8610_ids[] = { { .compatible = "fsl,mpc8610-immr", }, { .compatible = "simple-bus", }, {} }; static int __init mpc8610_declare_of_platform_devices(void) { /* Without this call, the SSI device driver won't get probed. */ of_platform_bus_probe(NULL, mpc8610_ids, NULL); return 0; } machine_device_initcall(mpc86xx_hpcd, mpc8610_declare_of_platform_devices); -- Timur Tabi Linux Kernel Developer @ Freescale