Adio on BeagleBoard XM 2.6.37-rc8

2011-01-19 Thread Ashok Babu
Hi folks,

After upgrading to 2.6.37-rc8, I am not able to play any audio.

Fund that the code in sound/soc/omap/omap-mcbsp.c uses the function
cpu_is_omap343x() which fails and returns ENODEV.

Does the call should be cpu_is_omap34xx() instead ?

Thanks  Regards
Ashok
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Adio on BeagleBoard XM 2.6.37-rc8

2011-01-19 Thread Jarkko Nikula
On Wed, 19 Jan 2011 17:17:11 +0530
Ashok Babu asho...@gmail.com wrote:

 Hi folks,
 
 After upgrading to 2.6.37-rc8, I am not able to play any audio.
 
 Fund that the code in sound/soc/omap/omap-mcbsp.c uses the function
 cpu_is_omap343x() which fails and returns ENODEV.
 
 Does the call should be cpu_is_omap34xx() instead ?
 
It looks like so. cpu_is_omap34xx() checks the lowest 8 bits from
omap_rev (that are 0x34 for omap3x ) and cpu_is_omap343x() checks upper
12 bits (that are 0x363 for 3630).

Peter: I think cpu_is_omap343x() tests can be replaced by
cpu_is_omap34xx() in omap-mcbsp.c? 

-- 
Jarkko
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: Adio on BeagleBoard XM 2.6.37-rc8

2011-01-19 Thread Tony Lindgren
* Jarkko Nikula jhnik...@gmail.com [110119 05:01]:
 On Wed, 19 Jan 2011 17:17:11 +0530
 Ashok Babu asho...@gmail.com wrote:
 
  Hi folks,
  
  After upgrading to 2.6.37-rc8, I am not able to play any audio.
  
  Fund that the code in sound/soc/omap/omap-mcbsp.c uses the function
  cpu_is_omap343x() which fails and returns ENODEV.
  
  Does the call should be cpu_is_omap34xx() instead ?
  
 It looks like so. cpu_is_omap34xx() checks the lowest 8 bits from
 omap_rev (that are 0x34 for omap3x ) and cpu_is_omap343x() checks upper
 12 bits (that are 0x363 for 3630).
 
 Peter: I think cpu_is_omap343x() tests can be replaced by
 cpu_is_omap34xx() in omap-mcbsp.c? 

For next merge window, can you please git rid of cpu_is_omap
and machine_is usage under drivers?

You can pass the necessary flags in platform data.

Regards,

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-omap in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html