linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* FIX ME in xsysace.c
@ 2014-11-24  4:19 nick
  2014-11-24  7:47 ` Michal Simek
  0 siblings, 1 reply; 4+ messages in thread
From: nick @ 2014-11-24  4:19 UTC (permalink / raw)
  To: linux-arm-kernel

Greetings Michal and others,
I am wondering about the FIX ME in xsysace.c as it seems not correct due to my knowledge of most hardware protocols using a predetermined bit wide and therefore this could be hard coded. If someone can respond on if I am correct in removing this fix me it would be greatly appreciated.
Cheers 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* FIX ME in xsysace.c
  2014-11-24  4:19 FIX ME in xsysace.c nick
@ 2014-11-24  7:47 ` Michal Simek
  2014-11-24 11:28   ` nick
  0 siblings, 1 reply; 4+ messages in thread
From: Michal Simek @ 2014-11-24  7:47 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On 11/24/2014 05:19 AM, nick wrote:
> Greetings Michal and others,
> I am wondering about the FIX ME in xsysace.c as it seems not correct due to my knowledge of most hardware protocols using a predetermined bit wide and therefore this could be hard coded. If someone can respond on if I am correct in removing this fix me it would be greatly appreciated.

I think that will be the best to c&p that fixme which you are talking about.
Definitely feel free to fix whatever fixme is there and send the patch
for fixing it.

Thanks,
Michal

^ permalink raw reply	[flat|nested] 4+ messages in thread

* FIX ME in xsysace.c
  2014-11-24  7:47 ` Michal Simek
@ 2014-11-24 11:28   ` nick
  2014-11-24 14:32     ` Michal Simek
  0 siblings, 1 reply; 4+ messages in thread
From: nick @ 2014-11-24 11:28 UTC (permalink / raw)
  To: linux-arm-kernel



On 14-11-24 02:47 AM, Michal Simek wrote:
> Hi,
> 
> On 11/24/2014 05:19 AM, nick wrote:
>> Greetings Michal and others,
>> I am wondering about the FIX ME in xsysace.c as it seems not correct due to my knowledge of most hardware protocols using a predetermined bit wide and therefore this could be hard coded. If someone can respond on if I am correct in removing this fix me it would be greatly appreciated.
> 
> I think that will be the best to c&p that fixme which you are talking about.
> Definitely feel free to fix whatever fixme is there and send the patch
> for fixing it.
> 
> Thanks,
> Michal
> 
Here is the fix me.
int bus_width = ACE_BUS_WIDTH_16; /* FIXME: should not be hard coded */
Cheers Nick

^ permalink raw reply	[flat|nested] 4+ messages in thread

* FIX ME in xsysace.c
  2014-11-24 11:28   ` nick
@ 2014-11-24 14:32     ` Michal Simek
  0 siblings, 0 replies; 4+ messages in thread
From: Michal Simek @ 2014-11-24 14:32 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On 11/24/2014 12:28 PM, nick wrote:
> 
> 
> On 14-11-24 02:47 AM, Michal Simek wrote:
>> Hi,
>>
>> On 11/24/2014 05:19 AM, nick wrote:
>>> Greetings Michal and others,
>>> I am wondering about the FIX ME in xsysace.c as it seems not correct due to my knowledge of most hardware protocols using a predetermined bit wide and therefore this could be hard coded. If someone can respond on if I am correct in removing this fix me it would be greatly appreciated.
>>
>> I think that will be the best to c&p that fixme which you are talking about.
>> Definitely feel free to fix whatever fixme is there and send the patch
>> for fixing it.
>>
>> Thanks,
>> Michal
>>
> Here is the fix me.
> int bus_width = ACE_BUS_WIDTH_16; /* FIXME: should not be hard coded */

FIXME is totally bogus and should be removed.

I expect you want to use 8bit bus mode which driver itself supports.
This line is just default setup to 16bit mode.

If you add 8-bit property to dts you are there.
	if (of_find_property(dev->dev.of_node, "8-bit", NULL))
		bus_width = ACE_BUS_WIDTH_8;

Thanks,
Michal

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-11-24 14:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-24  4:19 FIX ME in xsysace.c nick
2014-11-24  7:47 ` Michal Simek
2014-11-24 11:28   ` nick
2014-11-24 14:32     ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).