Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  mpc5xxx_clocks.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0

#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/property.h>

#include <asm/mpc5xxx.h>

/**
 * mpc5xxx_fwnode_get_bus_frequency - Find the bus frequency for a firmware node
 * @fwnode: firmware node
 *
 * Returns bus frequency (IPS on MPC512x, IPB on MPC52xx),
 * or 0 if the bus frequency cannot be found.
 */

unsigned long mpc5xxx_fwnode_get_bus_frequency(struct fwnode_handle *fwnode)
{
 struct fwnode_handle *parent;
 u32 bus_freq;
 int ret;

 ret = fwnode_property_read_u32(fwnode, "bus-frequency", &bus_freq);
 if (!ret)
  return bus_freq;

 fwnode_for_each_parent_node(fwnode, parent) {
  ret = fwnode_property_read_u32(parent, "bus-frequency", &bus_freq);
  if (!ret) {
   fwnode_handle_put(parent);
   return bus_freq;
  }
 }

 return 0;
}
EXPORT_SYMBOL(mpc5xxx_fwnode_get_bus_frequency);

Messung V0.5 in Prozent
C=94 H=95 G=94

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet am  2026-06-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik